mirror of
https://github.com/opnsense/src.git
synced 2026-07-15 12:11:48 -04:00
The vDSO (virtual dynamic shared object) is a small shared library that the
kernel maps R/O into the address space of all Linux processes on image
activation. The vDSO is a fully formed ELF image, shared by all processes
with the same ABI, has no process private data.
The primary purpose of the vDSO:
- non-executable stack, signal trampolines not copied to the stack;
- signal trampolines unwind, mandatory for the NPTL;
- to avoid contex-switch overhead frequently used system calls can be
implemented in the vDSO: for now gettimeofday, clock_gettime.
The first two have been implemented, so add the implementation of system
calls.
System calls implemenation based on a native timekeeping code with some
limitations:
- ifunc can't be used, as vDSO r/o mapped to the process VA and rtld
can't relocate symbols;
- reading HPET memory is not implemented for now (TODO).
In case on any error vDSO system calls fallback to the kernel system
calls. For unimplemented vDSO system calls added prototypes which call
corresponding kernel system call.
Relnotes: yes
Tested by: trasz (arm64)
Differential revision: https://reviews.freebsd.org/D30900
MFC after: 2 weeks
(cherry picked from commit 9931033bbf)
90 lines
3 KiB
Makefile
90 lines
3 KiB
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/compat/linux ${SRCTOP}/sys/${MACHINE}/linux
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
.PATH: ${SRCTOP}/sys/x86/linux
|
|
.endif
|
|
|
|
KMOD= linux64
|
|
SRCS= linux_elf64.c linux_fork.c linux_dummy_machdep.c linux_file.c \
|
|
linux_event.c linux_futex.c linux_getcwd.c linux_ioctl.c linux_ipc.c \
|
|
linux_machdep.c linux_misc.c linux_ptrace.c linux_signal.c \
|
|
linux_socket.c linux_stats.c linux_sysctl.c linux_sysent.c \
|
|
linux_sysvec.c linux_time.c linux_vdso.c linux_timer.c \
|
|
opt_compat.h opt_inet6.h opt_posix.h opt_usb.h \
|
|
vnode_if.h device_if.h bus_if.h \
|
|
linux_support.s
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SRCS+= linux_dummy_x86.c linux_vdso_tsc_selector_x86.c
|
|
.endif
|
|
DPSRCS= assym.inc linux_genassym.c
|
|
|
|
# XXX: for assym.inc
|
|
SRCS+= opt_kstack_pages.h opt_nfs.h opt_hwpmc_hooks.h
|
|
|
|
CLEANFILES= linux_assym.h linux_genassym.o linux_locore.o \
|
|
genassym.o linux_vdso_gtod.o linux_vdso.so.o
|
|
|
|
OBJS= linux_vdso.so
|
|
|
|
linux_assym.h: linux_genassym.o
|
|
sh ${SYSDIR}/kern/genassym.sh linux_genassym.o > ${.TARGET}
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
VDSOFLAGS=-mregparm=0 -mcmodel=small -msoft-float
|
|
VDSODEPS=linux_vdso_gettc_x86.inc
|
|
.elif ${MACHINE_CPUARCH} == "aarch64"
|
|
# The Linux uses tiny memory model, but our ld does not know about
|
|
# some of relocation types which is generated by cc
|
|
VDSOFLAGS=-mgeneral-regs-only -mcmodel=small -ffixed-x18
|
|
.endif
|
|
|
|
linux_locore.o: linux_assym.h assym.inc
|
|
${CC} -c -x assembler-with-cpp -DLOCORE \
|
|
-fPIC -pipe -O2 -Werror ${VDSOFLAGS} \
|
|
-nostdinc -fasynchronous-unwind-tables \
|
|
-fno-omit-frame-pointer -foptimize-sibling-calls \
|
|
-fno-stack-protector -I. -I${SYSDIR} -I${SRCTOP}/include \
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
linux_vdso_gtod.o: linux_vdso_gtod.inc ${VDSODEPS}
|
|
${CC} -c -fPIC -pipe -O2 -Werror ${VDSOFLAGS} \
|
|
-nostdinc -fasynchronous-unwind-tables \
|
|
-fno-omit-frame-pointer -foptimize-sibling-calls \
|
|
-fno-stack-protector -I. -I${SYSDIR} -I${SRCTOP}/include \
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
linux_vdso.so.o: linux_locore.o linux_vdso_gtod.o
|
|
${LD} --shared --eh-frame-hdr -soname=linux-vdso.so.1 \
|
|
--no-undefined --hash-style=both -warn-common -nostdlib \
|
|
--strip-debug -s --build-id=sha1 -Bsymbolic \
|
|
-T${SRCTOP}/sys/${MACHINE}/linux/linux_vdso.lds.s \
|
|
-o ${.TARGET} ${.ALLSRC:M*.o}
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64"
|
|
OBJCOPY_TARGET=--output-target elf64-littleaarch64 --binary-architecture aarch64
|
|
.elif ${MACHINE_CPUARCH} == "amd64"
|
|
OBJCOPY_TARGET=--output-target elf64-x86-64 --binary-architecture i386:x86-64
|
|
.else
|
|
.error ${MACHINE_CPUARCH} not yet supported by linux64
|
|
.endif
|
|
|
|
linux_vdso.so: linux_vdso.so.o
|
|
${OBJCOPY} --input-target binary ${OBJCOPY_TARGET} \
|
|
linux_vdso.so.o ${.TARGET}
|
|
${STRIPBIN} -N _binary_linux_vdso_so_o_size ${.TARGET}
|
|
|
|
linux_support.o: assym.inc linux_assym.h
|
|
${CC} -c -x assembler-with-cpp -DLOCORE ${CFLAGS} \
|
|
${.IMPSRC} -o ${.TARGET}
|
|
|
|
linux_genassym.o: offset.inc
|
|
${CC} -c ${CFLAGS:N-flto:N-fno-common} -fcommon ${.IMPSRC}
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.warning Building Linuxulator outside of a kernel does not make sense
|
|
.endif
|
|
|
|
EXPORT_SYMS= YES
|
|
|
|
.include <bsd.kmod.mk>
|