stackprotector.h 1012 字节
Newer Older
I
Ingo Molnar 已提交
1 2 3
#ifndef _ASM_STACKPROTECTOR_H
#define _ASM_STACKPROTECTOR_H 1

4
#include <asm/tsc.h>
5
#include <asm/processor.h>
6

7 8 9 10 11 12 13 14
/*
 * Initialize the stackprotector canary value.
 *
 * NOTE: this must only be called from functions that never return,
 * and it must always be inlined.
 */
static __always_inline void boot_init_stack_canary(void)
{
15 16 17
	u64 canary;
	u64 tsc;

18
	/*
T
Tejun Heo 已提交
19 20 21
	 * Build time only check to make sure the stack_canary is at
	 * offset 40 in the pda; this is a gcc ABI requirement
	 */
22
	BUILD_BUG_ON(offsetof(union irq_stack_union, stack_canary) != 40);
T
Tejun Heo 已提交
23 24

	/*
25 26 27 28
	 * We both use the random pool and the current TSC as a source
	 * of randomness. The TSC only matters for very early init,
	 * there it already has some randomness on most systems. Later
	 * on during the bootup the random pool has true entropy too.
29
	 */
30 31 32 33 34
	get_random_bytes(&canary, sizeof(canary));
	tsc = __native_read_tsc();
	canary += tsc + (tsc << 32UL);

	current->stack_canary = canary;
35
	percpu_write(irq_stack_union.stack_canary, canary);
36 37
}

I
Ingo Molnar 已提交
38
#endif