summaryrefslogtreecommitdiffstats
path: root/libexec/ld.so/Makefile
blob: f9dd281ff66bfcdfe5362e828c120b471107e066 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#	$OpenBSD: Makefile,v 1.78 2019/11/29 06:34:44 deraadt Exp $

SUBDIR=ldconfig ldd
MAN=	ld.so.1

.include <bsd.own.mk>

.if defined(NOPIC)
NOPROG=
.else
PROG=	ld.so
BINMODE=444

VERSION_SCRIPT=	${.CURDIR}/Symbols.map
ELF_LDFLAGS+=--version-script=${VERSION_SCRIPT}

VPATH=${.CURDIR}/../../lib/libc/string

.if exists(${.CURDIR}/${MACHINE_CPU}/boot_md.c)
BOOT = boot_md.c
.else
BOOT = boot.c
.endif

SRCS=	ldasm.S ${BOOT} loader.c resolve.c dlfcn.c dl_printf.c rtld_machine.c
SRCS+=	path.c util.c sod.c strsep.c strtol.c dir.c library_subr.c
SRCS+=	dl_uname.c dl_dirname.c strlcat.c strlen.c trace.c
SRCS+=	malloc.c reallocarray.c tib.c ffs.c

syscall=__syscall close exit fstat getdents getentropy getthrid issetugid \
	mprotect munmap msyscall open pledge read __realpath sendsyslog \
	__set_tcb sysctl thrkill utrace write

GEN_PREFIX=\t.file "${@:R}.c"\n\#include "SYS.h"
.for _i in ${syscall}
OBJS+=dl_${_i}.o
dl_${_i}.o: SYS.h
	printf '${GEN_PREFIX}\nDL_SYSCALL(${_i})\n' | \
	    ${CC} ${DEBUG} -c -fPIC ${CFLAGS:M-[ID]*} ${CFLAGS:M-pipe} ${AINC} -P \
	    -x assembler-with-cpp - ${DFLAGS} -MF ${.TARGET:R}.d -o ${.TARGET}
.endfor

.if (${MACHINE_ARCH} == "i386")
SRCS+=	library_mquery.c
.else
SRCS+=	library.c
.endif

.include "${.CURDIR}/${MACHINE_CPU}/Makefile.inc"
.PATH:	${.CURDIR}/${MACHINE_CPU}

.ifdef LD_SCRIPT
 ELF_LDFLAGS+=-T ${LD_SCRIPT}
 CFLAGS	+= -DDO_CLEAN_BOOT
.endif

DEBUG?=	-g
CFLAGS += -fno-builtin
CFLAGS += -Wall -Werror
CFLAGS += -I${.CURDIR} -I${.CURDIR}/${MACHINE_CPU} \
	-D'DEF_WEAK(x)=asm("")' -D'DEF_STRONG(x)=asm("")' \
	-Dstrsep=_dl_strsep -Dstrlcat=_dl_strlcat -Dstrlen=_dl_strlen
CDIAGFLAGS=
INSTALL_STRIP=

ELF_LDFLAGS+=--shared -Bsymbolic --no-undefined

.ifdef	RELATIVE_RELOC
CHECK_LDSO=c() {					\
	! readelf -Wr $$1 |				\
	  egrep -qv '^($$|[ R])| (${RELATIVE_RELOC}) ';	\
	}; c
.endif

test_prog=	test-$(PROG)
CLEANFILES+=	test-$(PROG)
candidate=	$(PROG).test
CLEANFILES+=	${candidate}

$(test_prog):
	printf '#include <stdio.h>\n#include <pthread.h>\nint main(int argc, char **argv){ pthread_attr_t attr; printf("%%s: ", argv[0]); pthread_attr_init(&attr); printf("%%s!\\n", argv[1] ? argv[1] : "foo"); }\n' | \
	$(CC) -P -x c - -Wl,-dynamic-linker,./$(candidate) -o $@ -lpthread

$(PROG): $(test_prog) ${VERSION_SCRIPT} $(OBJS) ${LD_SCRIPT}
.if defined(SYSPATCH_PATH)
	$(LD) -e _dl_start $(ELF_LDFLAGS) -o $(candidate) \
            `readelf -Ws ${SYSPATCH_PATH}/usr/libexec/${.TARGET} | \
            awk '/ FILE/{sub(".*/", "", $$NF); gsub(/\..*/, ".o", $$NF); print $$NF}' | \
            awk '!x[$$0]++'`
.else
	$(LD) -e _dl_start $(ELF_LDFLAGS) -o $(candidate) \
	    `echo ${OBJS} | tr " " "\n" | sort -R`
.endif
.ifdef	CHECK_LDSO
	${CHECK_LDSO} $(candidate)
.endif
.ifndef CROSSDIR
	ulimit -c 0; [ "`${.OBJDIR}/$(test_prog) ok`" = "${.OBJDIR}/$(test_prog): ok!" ]
.endif
	cp $(candidate) $@
.endif

.include <bsd.prog.mk>

${BOOT:R}.o: ${BOOT}
	${COMPILE.c} -fno-stack-protector ${.IMPSRC}

CLEANFILES+=	ld.so.a

all: ld.so.a

ld.so.a: ${OBJS} ${.CURDIR}/Symbols.map ${test_prog} ${LD_SCRIPT}
	ar cqD $@ $?

afterinstall: ld.so.a
	install -d -o root -g wheel -m 755 \
	    ${DESTDIR}/usr/share/relink/usr/libexec
	install -o ${BINOWN} -g ${BINGRP} -m ${NONBINMODE} \
	    ld.so.a ${DESTDIR}/usr/share/relink/usr/libexec/ld.so.a