blob: 60813497a38154db5dae5c084051228d8ae14deb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Will Deacon9031fef2012-03-05 11:49:31 +00002#
3# Building a vDSO image for AArch64.
4#
5# Author: Will Deacon <will.deacon@arm.com>
6# Heavily based on the vDSO Makefiles for other archs.
7#
8
Vincenzo Frascino28b1a822019-06-21 10:52:31 +01009# Absolute relocation type $(ARCH_REL_TYPE_ABS) needs to be defined before
10# the inclusion of generic Makefile.
11ARCH_REL_TYPE_ABS := R_AARCH64_JUMP_SLOT|R_AARCH64_GLOB_DAT|R_AARCH64_ABS64
12include $(srctree)/lib/vdso/Makefile
13
14obj-vdso := vgettimeofday.o note.o sigreturn.o
Will Deacon9031fef2012-03-05 11:49:31 +000015
16# Build rules
17targets := $(obj-vdso) vdso.so vdso.so.dbg
18obj-vdso := $(addprefix $(obj)/, $(obj-vdso))
19
Mark Brown5e02a182020-05-06 20:51:37 +010020btildflags-$(CONFIG_ARM64_BTI_KERNEL) += -z force-bti
21
Vincenzo Frascino86b87832020-04-28 16:08:54 +010022# -Bsymbolic has been added for consistency with arm, the compat vDSO and
23# potential future proofing if we end up with internal calls to the exported
24# routines, as x86 does (see 6f121e548f83 ("x86, vdso: Reimplement vdso.so
25# preparation in build-time C")).
Masahiro Yamada34688c72021-11-08 01:18:02 +090026ldflags-y := -shared -soname=linux-vdso.so.1 --hash-style=sysv \
Peter Collingbournee2bba5f2020-12-30 14:19:54 -080027 -Bsymbolic --build-id=sha1 -n $(btildflags-y) -T
Will Deacon9031fef2012-03-05 11:49:31 +000028
Peter Collingbourne98cd3c32019-06-21 10:52:32 +010029ccflags-y := -fno-common -fno-builtin -fno-stack-protector -ffixed-x18
Will Deacone35123d2020-06-30 14:02:48 +010030ccflags-y += -DDISABLE_BRANCH_PROFILING -DBUILD_VDSO
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010031
Sami Tolvanen004d53f82020-12-11 10:46:31 -080032CFLAGS_REMOVE_vgettimeofday.o = $(CC_FLAGS_FTRACE) -Os $(CC_FLAGS_SCS) $(GCC_PLUGINS_CFLAGS) \
33 $(CC_FLAGS_LTO)
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010034KASAN_SANITIZE := n
Kefeng Wangdd037622021-12-11 21:17:34 +080035KCSAN_SANITIZE := n
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010036UBSAN_SANITIZE := n
37OBJECT_FILES_NON_STANDARD := y
38KCOV_INSTRUMENT := n
39
Vincenzo Frascino1578e5d2020-04-29 16:10:50 +010040CFLAGS_vgettimeofday.o = -O2 -mcmodel=tiny -fasynchronous-unwind-tables
Vincenzo Frascinoa88754b2019-07-19 11:10:18 +010041
42ifneq ($(c-gettimeofday-y),)
43 CFLAGS_vgettimeofday.o += -include $(c-gettimeofday-y)
Vincenzo Frascino28b1a822019-06-21 10:52:31 +010044endif
45
Arnd Bergmann54309782015-11-12 15:37:12 +010046# Disable gcov profiling for VDSO code
47GCOV_PROFILE := n
48
Masahiro Yamada887af6d2020-09-01 03:22:39 +090049targets += vdso.lds
Will Deacon9031fef2012-03-05 11:49:31 +000050CPPFLAGS_vdso.lds += -P -C -U$(ARCH)
51
52# Force dependency (incbin is bad)
53$(obj)/vdso.o : $(obj)/vdso.so
54
55# Link rule for the .so file, .lds has to be first
Masahiro Yamada697e96e2019-04-03 17:48:22 +090056$(obj)/vdso.so.dbg: $(obj)/vdso.lds $(obj-vdso) FORCE
Naohiro Aota2e2f3c92019-07-12 19:15:56 +090057 $(call if_changed,vdsold_and_vdso_check)
Will Deacon9031fef2012-03-05 11:49:31 +000058
59# Strip rule for the .so file
60$(obj)/%.so: OBJCOPYFLAGS := -S
61$(obj)/%.so: $(obj)/%.so.dbg FORCE
62 $(call if_changed,objcopy)
63
64# Generate VDSO offsets using helper script
65gen-vdsosym := $(srctree)/$(src)/gen_vdso_offsets.sh
66quiet_cmd_vdsosym = VDSOSYM $@
Masahiro Yamada697e96e2019-04-03 17:48:22 +090067 cmd_vdsosym = $(NM) $< | $(gen-vdsosym) | LC_ALL=C sort > $@
Will Deacon9031fef2012-03-05 11:49:31 +000068
Kevin Brodskya66649d2016-05-12 17:39:15 +010069include/generated/vdso-offsets.h: $(obj)/vdso.so.dbg FORCE
Will Deacon9031fef2012-03-05 11:49:31 +000070 $(call if_changed,vdsosym)
71
Will Deacon9031fef2012-03-05 11:49:31 +000072# Actual build commands
Naohiro Aota2e2f3c92019-07-12 19:15:56 +090073quiet_cmd_vdsold_and_vdso_check = LD $@
74 cmd_vdsold_and_vdso_check = $(cmd_ld); $(cmd_vdso_check)
75
Will Deacon9031fef2012-03-05 11:49:31 +000076# Install commands for the unstripped file
77quiet_cmd_vdso_install = INSTALL $@
78 cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@
79
80vdso.so: $(obj)/vdso.so.dbg
81 @mkdir -p $(MODLIB)/vdso
82 $(call cmd,vdso_install)
83
84vdso_install: vdso.so