@@ -8,6 +8,9 @@ include $(srctree)/lib/vdso/Makefile
8
8
obj-vdso32 = sigtramp32-32.o gettimeofday-32.o datapage-32.o cacheflush-32.o note-32.o getcpu-32.o
9
9
obj-vdso64 = sigtramp64-64.o gettimeofday-64.o datapage-64.o cacheflush-64.o note-64.o getcpu-64.o
10
10
11
+ obj-vdso32 += getrandom-32.o vgetrandom-chacha-32.o
12
+ obj-vdso64 += getrandom-64.o vgetrandom-chacha-64.o
13
+
11
14
ifneq ($(c-gettimeofday-y ) ,)
12
15
CFLAGS_vgettimeofday-32.o += -include $(c-gettimeofday-y )
13
16
CFLAGS_vgettimeofday-32.o += $(DISABLE_LATENT_ENTROPY_PLUGIN )
@@ -34,6 +37,32 @@ ifneq ($(c-gettimeofday-y),)
34
37
CFLAGS_vgettimeofday-64.o += $(call cc-option, -ffixed-r30)
35
38
endif
36
39
40
+ ifneq ($(c-getrandom-y ) ,)
41
+ CFLAGS_vgetrandom-32.o += -include $(c-getrandom-y )
42
+ CFLAGS_vgetrandom-32.o += $(DISABLE_LATENT_ENTROPY_PLUGIN )
43
+ CFLAGS_vgetrandom-32.o += $(call cc-option, -fno-stack-protector)
44
+ CFLAGS_vgetrandom-32.o += -DDISABLE_BRANCH_PROFILING
45
+ CFLAGS_vgetrandom-32.o += -ffreestanding -fasynchronous-unwind-tables
46
+ CFLAGS_REMOVE_vgetrandom-32.o = $(CC_FLAGS_FTRACE )
47
+ CFLAGS_REMOVE_vgetrandom-32.o += -mcmodel=medium -mabi=elfv1 -mabi=elfv2 -mcall-aixdesc
48
+ # This flag is supported by clang for 64-bit but not 32-bit so it will cause
49
+ # an unused command line flag warning for this file.
50
+ ifdef CONFIG_CC_IS_CLANG
51
+ CFLAGS_REMOVE_vgetrandom-32.o += -fno-stack-clash-protection
52
+ endif
53
+ CFLAGS_vgetrandom-64.o += -include $(c-getrandom-y )
54
+ CFLAGS_vgetrandom-64.o += $(DISABLE_LATENT_ENTROPY_PLUGIN )
55
+ CFLAGS_vgetrandom-64.o += $(call cc-option, -fno-stack-protector)
56
+ CFLAGS_vgetrandom-64.o += -DDISABLE_BRANCH_PROFILING
57
+ CFLAGS_vgetrandom-64.o += -ffreestanding -fasynchronous-unwind-tables
58
+ CFLAGS_REMOVE_vgetrandom-64.o = $(CC_FLAGS_FTRACE )
59
+ # Go prior to 1.16.x assumes r30 is not clobbered by any VDSO code. That used to be true
60
+ # by accident when the VDSO was hand-written asm code, but may not be now that the VDSO is
61
+ # compiler generated. To avoid breaking Go tell GCC not to use r30. Impact on code
62
+ # generation is minimal, it will just use r29 instead.
63
+ CFLAGS_vgetrandom-64.o += $(call cc-option, -ffixed-r30)
64
+ endif
65
+
37
66
# Build rules
38
67
39
68
ifdef CROSS32_COMPILE
42
71
VDSOCC := $(CC )
43
72
endif
44
73
45
- targets := $(obj-vdso32 ) vdso32.so.dbg vgettimeofday-32.o
74
+ targets := $(obj-vdso32 ) vdso32.so.dbg vgettimeofday-32.o vgetrandom-32.o
75
+ targets += crtsavres-32.o
46
76
obj-vdso32 := $(addprefix $(obj ) /, $(obj-vdso32 ) )
47
- targets += $(obj-vdso64 ) vdso64.so.dbg vgettimeofday-64.o
77
+ targets += $(obj-vdso64 ) vdso64.so.dbg vgettimeofday-64.o vgetrandom-64.o
48
78
obj-vdso64 := $(addprefix $(obj ) /, $(obj-vdso64 ) )
49
79
50
80
ccflags-y := -fno-common -fno-builtin
@@ -68,20 +98,26 @@ targets += vdso64.lds
68
98
CPPFLAGS_vdso64.lds += -P -C
69
99
70
100
# link rule for the .so file, .lds has to be first
71
- $(obj ) /vdso32.so.dbg : $(obj ) /vdso32.lds $(obj-vdso32 ) $(obj ) /vgettimeofday-32.o FORCE
101
+ $(obj ) /vdso32.so.dbg : $(obj ) /vdso32.lds $(obj-vdso32 ) $(obj ) /vgettimeofday-32.o $( obj ) /vgetrandom-32.o $( obj ) /crtsavres-32.o FORCE
72
102
$(call if_changed,vdso32ld_and_check)
73
- $(obj ) /vdso64.so.dbg : $(obj ) /vdso64.lds $(obj-vdso64 ) $(obj ) /vgettimeofday-64.o FORCE
103
+ $(obj ) /vdso64.so.dbg : $(obj ) /vdso64.lds $(obj-vdso64 ) $(obj ) /vgettimeofday-64.o $( obj ) /vgetrandom-64.o FORCE
74
104
$(call if_changed,vdso64ld_and_check)
75
105
76
106
# assembly rules for the .S files
77
107
$(obj-vdso32 ) : % -32.o: % .S FORCE
78
108
$(call if_changed_dep,vdso32as)
109
+ $(obj ) /crtsavres-32.o : % -32.o: $(srctree ) /arch/powerpc/lib/crtsavres.S FORCE
110
+ $(call if_changed_dep,vdso32as)
79
111
$(obj ) /vgettimeofday-32.o : % -32.o: % .c FORCE
80
112
$(call if_changed_dep,vdso32cc)
113
+ $(obj ) /vgetrandom-32.o : % -32.o: % .c FORCE
114
+ $(call if_changed_dep,vdso32cc)
81
115
$(obj-vdso64 ) : % -64.o: % .S FORCE
82
116
$(call if_changed_dep,vdso64as)
83
117
$(obj ) /vgettimeofday-64.o : % -64.o: % .c FORCE
84
118
$(call if_changed_dep,cc_o_c)
119
+ $(obj ) /vgetrandom-64.o : % -64.o: % .c FORCE
120
+ $(call if_changed_dep,cc_o_c)
85
121
86
122
# Generate VDSO offsets using helper script
87
123
gen-vdso32sym := $(src ) /gen_vdso32_offsets.sh
0 commit comments