/linux-6.3-rc2/arch/loongarch/include/asm/ |
A D | stackprotector.h | 28 unsigned long canary; in boot_init_stack_canary() local 31 get_random_bytes(&canary, sizeof(canary)); in boot_init_stack_canary() 32 canary ^= LINUX_VERSION_CODE; in boot_init_stack_canary() 34 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/powerpc/include/asm/ |
A D | stackprotector.h | 22 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 24 current->stack_canary = canary; in boot_init_stack_canary() 26 get_paca()->canary = canary; in boot_init_stack_canary()
|
A D | paca.h | 277 unsigned long canary; member
|
/linux-6.3-rc2/arch/x86/include/asm/ |
A D | stackprotector.h | 52 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 58 current->stack_canary = canary; in boot_init_stack_canary() 60 this_cpu_write(fixed_percpu_data.stack_canary, canary); in boot_init_stack_canary() 62 this_cpu_write(__stack_chk_guard, canary); in boot_init_stack_canary()
|
/linux-6.3-rc2/drivers/misc/lkdtm/ |
A D | bugs.c | 164 unsigned long *canary = (unsigned long *)stack; in __lkdtm_REPORT_STACK_CANARY() local 169 canary = (unsigned long *)stack + i; in __lkdtm_REPORT_STACK_CANARY() 171 if (*canary == current->stack_canary) in __lkdtm_REPORT_STACK_CANARY() 173 if (*canary == init_task.stack_canary) in __lkdtm_REPORT_STACK_CANARY() 197 canary = (unsigned long *)stack + current_offset; in __lkdtm_REPORT_STACK_CANARY() 199 stack_canary = *canary; in __lkdtm_REPORT_STACK_CANARY() 213 if (*canary == stack_canary) { in __lkdtm_REPORT_STACK_CANARY()
|
/linux-6.3-rc2/arch/xtensa/include/asm/ |
A D | stackprotector.h | 27 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 29 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/sh/include/asm/ |
A D | stackprotector.h | 15 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 17 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/csky/include/asm/ |
A D | stackprotector.h | 15 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 17 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/mips/include/asm/ |
A D | stackprotector.h | 28 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 30 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/arm/include/asm/ |
A D | stackprotector.h | 30 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 32 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/riscv/include/asm/ |
A D | stackprotector.h | 16 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 18 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/arm64/include/asm/ |
A D | stackprotector.h | 29 unsigned long canary = get_random_canary(); in boot_init_stack_canary() local 31 current->stack_canary = canary; in boot_init_stack_canary()
|
/linux-6.3-rc2/arch/x86/platform/pvh/ |
A D | head.S | 99 mov $_pa(canary), %eax 159 SYM_DATA_LOCAL(canary, .fill 48, 1, 0)
|
/linux-6.3-rc2/drivers/soc/qcom/ |
A D | smem.c | 224 u16 canary; /* bytes are the same so no swapping needed */ member 383 if (hdr->canary != SMEM_PRIVATE_CANARY) in qcom_smem_alloc_private() 401 hdr->canary = SMEM_PRIVATE_CANARY; in qcom_smem_alloc_private() 562 if (e->canary != SMEM_PRIVATE_CANARY) in qcom_smem_get_private() 598 if (e->canary != SMEM_PRIVATE_CANARY) in qcom_smem_get_private()
|
/linux-6.3-rc2/drivers/net/ipa/ |
A D | ipa_mem.c | 366 __le32 *canary; in ipa_mem_config() local 372 canary = ipa->mem_virt + ipa->mem_offset + ipa->mem[i].offset; in ipa_mem_config() 374 *--canary = IPA_MEM_CANARY_VAL; in ipa_mem_config()
|
/linux-6.3-rc2/drivers/tty/serial/8250/ |
A D | 8250_core.c | 762 unsigned char canary = 0xa5; in serial8250_suspend_port() local 764 serial_out(up, UART_SCR, canary); in serial8250_suspend_port() 765 if (serial_in(up, UART_SCR) == canary) in serial8250_suspend_port() 766 up->canary = canary; in serial8250_suspend_port() 784 up->canary = 0; in serial8250_resume_port()
|
A D | 8250_port.c | 3410 if (up->canary && (up->canary != serial_port_in(port, UART_SCR))) { in serial8250_console_write() 3412 up->canary = 0; in serial8250_console_write()
|
/linux-6.3-rc2/include/linux/ |
A D | serial_8250.h | 110 unsigned char canary; /* non-zero during system sleep member
|
/linux-6.3-rc2/Documentation/security/ |
A D | self-protection.rst | 157 is the presence of a stack canary between the stack variables and the 207 It should be noted that things like the stack canary discussed earlier 217 different canary per stack) and high entropy (e.g. is the RNG actually 270 addresses or other sensitive things like canary values).
|
/linux-6.3-rc2/arch/arm/mach-at91/ |
A D | pm.c | 45 phys_addr_t canary; member 184 static int canary = 0xA5A5A5A5; variable 1080 soc_pm.bu->canary = __pa_symbol(&canary); in at91_pm_backup_init()
|
/linux-6.3-rc2/arch/ |
A D | Kconfig | 583 - it has implemented a stack canary (e.g. __stack_chk_guard) 592 feature puts, at the beginning of functions, a canary value on 596 overwrite the canary, which gets detected and the attack is then 599 Functions will have the stack-protector canary logic added if they 605 On an x86 "defconfig" build, this feature adds canary checks to 615 Functions will have the stack-protector canary logic added in any 627 On an x86 "defconfig" build, this feature adds canary checks to 1216 to the compiler, so it will attempt to add canary checks regardless
|
/linux-6.3-rc2/arch/powerpc/kernel/ |
A D | asm-offsets.c | 84 OFFSET(PACA_CANARY, paca_struct, canary); in main()
|
/linux-6.3-rc2/arch/arm/ |
A D | Kconfig | 1440 bool "Use a unique stack canary value for each task" 1447 which to load the value of the stack canary, this value can only 1449 kernel's address space are forced to use the same canary value for 1453 different canary value for each task.
|
/linux-6.3-rc2/arch/powerpc/xmon/ |
A D | xmon.c | 2698 DUMP(p, canary, "%#-*lx"); in dump_one_paca()
|