xref: /freebsd/lib/libsys/Makefile.sys (revision ea4042246d618ed67275ed8fc0685c1dd6bcb8e5)
1# Implement symbols common to libc and libsys.
2#
3# When dynamically linked, the libc symbols are filtered by the actual
4# implementations in libsys.  When statically linked, both libc and
5# libsys contain full implementations to preserve the API of libc.a.
6#
7# The following variable are programmer-defined:
8#
9# MDASM		Override the default syscall implementation in MIASM
10#		(from syscall.mk below).  Each entry is a source file
11#		name (e.g., vfork.S).
12#		Generally defined in <arch>/Makefile.sys.
13# NOASM		Don't generate system call stubs.  Each entry is an
14#		object file name (e.g., yeild.o).  Don't add more of these.
15# PSEUDO	Generate _<sys> and __sys_<sys> symbols, but not <sys>.
16#		Each entry is a bare syscall name (e.g., "clock_gettime").
17# INTERPOSED	Like PSEUDO, but <sys>.c is added to SRCS.
18#		Used for syscalls intercepted by the threading library.
19#
20.PATH: ${LIBSYS_SRCTOP}/${LIBC_ARCH} ${LIBSYS_SRCTOP}
21
22# Include the generated makefile containing the *complete* list
23# of syscall names in MIASM.
24.include "${SRCTOP}/sys/sys/syscall.mk"
25
26# Include machine dependent definitions.
27.include "${LIBSYS_SRCTOP}/${LIBC_ARCH}/Makefile.sys"
28.if ${LIBC_ARCH} == "i386" || ${LIBC_ARCH} == "amd64"
29.include "${LIBSYS_SRCTOP}/x86/Makefile.sys"
30.endif
31
32SRCS+= clock_gettime.c gettimeofday.c __vdso_gettimeofday.c
33
34# Sources common to both syscall interfaces:
35SRCS+=	\
36	__error.c \
37	__getosreldate.c \
38	getpagesize.c \
39	getpagesizes.c \
40	libsys_sigwait.c
41
42.if ${LIB} == "c"
43# Trapping stubs in dynamic libc to be filtered by libsys.
44SOBJS+=	libc_stubs.pico
45
46# Link the full implementation of ELF auxargs for static libc.
47STATICOBJS+=	auxv.o
48
49STATICOBJS+=	interposing_table.o
50.endif
51
52PSEUDO= \
53	__realpathat \
54	clock_gettime \
55	exit \
56	getlogin \
57	gettimeofday \
58	sched_getcpu
59
60INTERPOSED = \
61	accept \
62	accept4 \
63	aio_suspend \
64	clock_nanosleep \
65	close \
66	connect \
67	fcntl \
68	fdatasync \
69	fsync \
70	fork \
71	kevent \
72	msync \
73	nanosleep \
74	open \
75	openat \
76	pdfork \
77	poll \
78	ppoll \
79	pselect \
80	ptrace \
81	read \
82	readv \
83	recvfrom \
84	recvmsg \
85	select \
86	sendmsg \
87	sendto \
88	setcontext \
89	sigaction \
90	sigprocmask \
91	sigsuspend \
92	sigtimedwait \
93	sigwait \
94	sigwaitinfo \
95	swapcontext \
96	wait4 \
97	wait6 \
98	write \
99	writev
100
101PSEUDO+=	${INTERPOSED}
102
103# Add machine dependent asm sources:
104SRCS+=${MDASM}
105
106# Look though the complete list of syscalls (MIASM) for names that are
107# not defined with machine dependent implementations (MDASM), not declared
108# without a trival <sys> symbol (PSEUDO).  Add each syscall that satisfies
109# these conditions to the ASM list.
110.for _asm in ${MIASM}
111.if !${MDASM:R:M${_asm:R}} && !${NOASM:R:M${_asm:R}} && !${PSEUDO:M${_asm:R}}
112ASM+=$(_asm)
113.endif
114.endfor
115
116SASM=	${ASM:S/.o/.S/}
117
118SPSEUDO= ${PSEUDO:C/^.*$/_&.S/}
119
120SRCS+=	${SASM} ${SPSEUDO}
121
122SYM_MAPS+=	${LIBSYS_SRCTOP}/syscalls.map
123SYM_MAPS+=	${LIBSYS_SRCTOP}/Symbol.sys.map
124.if exists(${LIBSYS_SRCTOP}/${LIBC_ARCH}/Symbol.sys.map)
125SYM_MAPS+=	${LIBSYS_SRCTOP}/${LIBC_ARCH}/Symbol.sys.map
126.endif
127
128# Generated files
129CLEANFILES+=	${SASM} ${SPSEUDO}
130
131NOTE_GNU_STACK='\t.section .note.GNU-stack,"",%%progbits\n'
132.if ${MACHINE_CPUARCH} == "aarch64"
133FEATURE_NOTE='\#include <sys/elf_common.h>\nGNU_PROPERTY_AARCH64_FEATURE_1_NOTE(GNU_PROPERTY_AARCH64_FEATURE_1_VAL)\n'
134.else
135FEATURE_NOTE=''
136.endif
137
138${SASM}:
139	printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
140	printf '#include "compat.h"\n' >> ${.TARGET}
141	printf '#include "SYS.h"\nRSYSCALL(${.PREFIX})\n' >> ${.TARGET}
142	printf  ${NOTE_GNU_STACK} >>${.TARGET}
143	printf  ${FEATURE_NOTE} >> ${.TARGET}
144
145${SPSEUDO}:
146	printf '/* %sgenerated by libc/sys/Makefile.inc */\n' @ > ${.TARGET}
147	printf '#include "compat.h"\n' >> ${.TARGET}
148	printf '#include "SYS.h"\nPSEUDO(${.PREFIX:S/_//})\n' \
149	    >> ${.TARGET}
150	printf ${NOTE_GNU_STACK} >>${.TARGET}
151	printf ${FEATURE_NOTE} >> ${.TARGET}
152
153.if ${LIB} == "sys"
154MAN+=	abort2.2 \
155	accept.2 \
156	access.2 \
157	acct.2 \
158	adjtime.2 \
159	aio_cancel.2 \
160	aio_error.2 \
161	aio_fsync.2 \
162	aio_mlock.2 \
163	aio_read.2 \
164	aio_return.2 \
165	aio_suspend.2 \
166	aio_waitcomplete.2 \
167	aio_write.2 \
168	auxv.3 \
169	bind.2 \
170	bindat.2 \
171	brk.2 \
172	cap_enter.2 \
173	cap_fcntls_limit.2 \
174	cap_ioctls_limit.2 \
175	cap_rights_limit.2 \
176	chdir.2 \
177	chflags.2 \
178	chmod.2 \
179	chown.2 \
180	chroot.2 \
181	clock_gettime.2 \
182	close.2 \
183	closefrom.2 \
184	connect.2 \
185	connectat.2 \
186	copy_file_range.2 \
187	cpuset.2 \
188	cpuset_getaffinity.2 \
189	cpuset_getdomain.2 \
190	creat.2 \
191	dup.2 \
192	eventfd.2 \
193	execve.2 \
194	_exit.2 \
195	extattr_get_file.2 \
196	fcntl.2 \
197	ffclock.2 \
198	fhlink.2 \
199	fhopen.2 \
200	fhreadlink.2 \
201	flock.2 \
202	fork.2 \
203	fspacectl.2 \
204	fsync.2 \
205	getdirentries.2 \
206	getdtablesize.2 \
207	getfh.2 \
208	getfsstat.2 \
209	getgid.2 \
210	getgroups.2 \
211	getitimer.2 \
212	getlogin.2 \
213	getloginclass.2 \
214	getpeername.2 \
215	getpgrp.2 \
216	getpid.2 \
217	getpriority.2 \
218	getrandom.2 \
219	getrlimit.2 \
220	getrlimitusage.2 \
221	getrusage.2 \
222	getsid.2 \
223	getsockname.2 \
224	getsockopt.2 \
225	gettimeofday.2 \
226	getuid.2 \
227	inotify.2 \
228	intro.2 \
229	ioctl.2 \
230	issetugid.2 \
231	jail.2 \
232	kcmp.2 \
233	kenv.2 \
234	kill.2 \
235	kldfind.2 \
236	kldfirstmod.2 \
237	kldload.2 \
238	kldnext.2 \
239	kldstat.2 \
240	kldsym.2 \
241	kldunload.2 \
242	kqueue.2 \
243	ktrace.2 \
244	link.2 \
245	lio_listio.2 \
246	listen.2 \
247	lseek.2 \
248	madvise.2 \
249	membarrier.2 \
250	mincore.2 \
251	minherit.2 \
252	mkdir.2 \
253	mkfifo.2 \
254	mknod.2 \
255	mlock.2 \
256	mlockall.2 \
257	mmap.2 \
258	modfind.2 \
259	modnext.2 \
260	modstat.2 \
261	mount.2 \
262	mprotect.2 \
263	mq_close.2 \
264	mq_getattr.2 \
265	mq_notify.2 \
266	mq_open.2 \
267	mq_receive.2 \
268	mq_send.2 \
269	mq_setattr.2 \
270	mq_unlink.2 \
271	msgctl.2 \
272	msgget.2 \
273	msgrcv.2 \
274	msgsnd.2 \
275	msync.2 \
276	munmap.2 \
277	nanosleep.2 \
278	nfssvc.2 \
279	ntp_adjtime.2 \
280	open.2 \
281	pathconf.2 \
282	pdfork.2 \
283	pipe.2 \
284	poll.2 \
285	posix_fadvise.2 \
286	posix_fallocate.2 \
287	posix_openpt.2 \
288	procctl.2 \
289	profil.2 \
290	pselect.2 \
291	ptrace.2 \
292	quotactl.2 \
293	rctl_add_rule.2 \
294	read.2 \
295	readlink.2 \
296	reboot.2 \
297	recv.2 \
298	rename.2 \
299	revoke.2 \
300	rfork.2 \
301	rmdir.2 \
302	rtprio.2 \
303	sched_get_priority_max.2 \
304	sched_getcpu.3 \
305	sched_setparam.2 \
306	sched_setscheduler.2 \
307	sched_yield.2 \
308	sctp_generic_recvmsg.2 \
309	sctp_generic_sendmsg.2 \
310	sctp_peeloff.2 \
311	select.2 \
312	semctl.2 \
313	semget.2 \
314	semop.2 \
315	send.2 \
316	setcred.2 \
317	setfib.2 \
318	sendfile.2 \
319	setgroups.2 \
320	setpgid.2 \
321	setregid.2 \
322	setresuid.2 \
323	setreuid.2 \
324	setsid.2 \
325	setuid.2 \
326	shmat.2 \
327	shmctl.2 \
328	shmget.2 \
329	shm_open.2 \
330	shutdown.2 \
331	sigaction.2 \
332	sigaltstack.2 \
333	sigfastblock.2 \
334	sigpending.2 \
335	sigprocmask.2 \
336	sigqueue.2 \
337	sigreturn.2 \
338	sigstack.2 \
339	sigsuspend.2 \
340	sigwait.2 \
341	sigwaitinfo.2 \
342	socket.2 \
343	socketpair.2 \
344	stat.2 \
345	statfs.2 \
346	swapon.2 \
347	symlink.2 \
348	sync.2 \
349	sysarch.2 \
350	syscall.2 \
351	thr_exit.2 \
352	thr_kill.2 \
353	thr_new.2 \
354	thr_self.2 \
355	thr_set_name.2 \
356	thr_suspend.2 \
357	thr_wake.2 \
358	timer_create.2 \
359	timer_delete.2 \
360	timer_settime.2 \
361	timerfd.2 \
362	truncate.2 \
363	umask.2 \
364	undelete.2 \
365	unlink.2 \
366	utimensat.2 \
367	utimes.2 \
368	utrace.2 \
369	uuidgen.2 \
370	vfork.2 \
371	wait.2 \
372	write.2 \
373	_umtx_op.2
374
375MAN+= \
376	getpagesize.3 \
377	getpagesizes.3 \
378	lockf.3 \
379	rfork_thread.3 \
380	sleep.3 \
381	usleep.3
382
383MLINKS+=aio_read.2 aio_readv.2 \
384	aio_read.2 aio_read2.2
385MLINKS+=aio_write.2 aio_writev.2 \
386	aio_write.2 aio_write2.2
387MLINKS+=accept.2 accept4.2
388MLINKS+=access.2 eaccess.2 \
389	access.2 faccessat.2
390MLINKS+=auxv.3 elf_aux_info.3
391MLINKS+=brk.2 sbrk.2
392MLINKS+=cap_enter.2 cap_getmode.2
393MLINKS+=cap_fcntls_limit.2 cap_fcntls_get.2
394MLINKS+=cap_ioctls_limit.2 cap_ioctls_get.2
395MLINKS+=chdir.2 fchdir.2
396MLINKS+=chflags.2 chflagsat.2 \
397	chflags.2 fchflags.2 \
398	chflags.2 lchflags.2
399MLINKS+=chmod.2 fchmod.2 \
400	chmod.2 fchmodat.2 \
401	chmod.2 lchmod.2
402MLINKS+=chown.2 fchown.2 \
403	chown.2 fchownat.2 \
404	chown.2 lchown.2
405MLINKS+=chroot.2 fchroot.2
406MLINKS+=clock_gettime.2 clock_getres.2 \
407	clock_gettime.2 clock_settime.2
408MLINKS+=closefrom.2 close_range.2
409MLINKS+=nanosleep.2 clock_nanosleep.2
410MLINKS+=cpuset.2 cpuset_getid.2 \
411	cpuset.2 cpuset_setid.2
412MLINKS+=cpuset_getaffinity.2 cpuset_setaffinity.2
413MLINKS+=cpuset_getdomain.2 cpuset_setdomain.2
414MLINKS+=dup.2 dup2.2
415MLINKS+=eventfd.2 eventfd_read.3 \
416	eventfd.2 eventfd_write.3
417MLINKS+=execve.2 fexecve.2
418MLINKS+=extattr_get_file.2 extattr.2 \
419	extattr_get_file.2 extattr_delete_fd.2 \
420	extattr_get_file.2 extattr_delete_file.2 \
421	extattr_get_file.2 extattr_delete_link.2 \
422	extattr_get_file.2 extattr_get_fd.2 \
423	extattr_get_file.2 extattr_get_link.2 \
424	extattr_get_file.2 extattr_list_fd.2 \
425	extattr_get_file.2 extattr_list_file.2 \
426	extattr_get_file.2 extattr_list_link.2 \
427	extattr_get_file.2 extattr_set_fd.2 \
428	extattr_get_file.2 extattr_set_file.2 \
429	extattr_get_file.2 extattr_set_link.2
430MLINKS+=ffclock.2 ffclock_getcounter.2 \
431	ffclock.2 ffclock_getestimate.2 \
432	ffclock.2 ffclock_setestimate.2
433MLINKS+=fhlink.2 fhlinkat.2
434MLINKS+=fhopen.2 fhstat.2 fhopen.2 fhstatfs.2
435MLINKS+=fork.2 _Fork.2
436MLINKS+=fsync.2 fdatasync.2
437MLINKS+=getdirentries.2 getdents.2
438MLINKS+=getfh.2 lgetfh.2 \
439	getfh.2 getfhat.2
440MLINKS+=getgid.2 getegid.2
441MLINKS+=getitimer.2 setitimer.2
442MLINKS+=getlogin.2 getlogin_r.3
443MLINKS+=getlogin.2 setlogin.2
444MLINKS+=getloginclass.2 setloginclass.2
445MLINKS+=getpgrp.2 getpgid.2
446MLINKS+=getpid.2 getppid.2
447MLINKS+=getpriority.2 setpriority.2
448MLINKS+=getrlimit.2 setrlimit.2
449MLINKS+=getsockopt.2 setsockopt.2
450MLINKS+=gettimeofday.2 settimeofday.2
451MLINKS+=getuid.2 geteuid.2
452MLINKS+=inotify.2 inotify_init.2 \
453	inotify.2 inotify_init1.2 \
454	inotify.2 inotify_add_watch.2 \
455	inotify.2 inotify_add_watch_at.2 \
456	inotify.2 inotify_rm_watch.2
457MLINKS+=intro.2 errno.2
458MLINKS+=jail.2 jail_attach.2 \
459	jail.2 jail_get.2 \
460	jail.2 jail_remove.2 \
461	jail.2 jail_set.2
462MLINKS+=kldunload.2 kldunloadf.2
463MLINKS+=kqueue.2 kevent.2 \
464	kqueue.2 kqueue1.2 \
465	kqueue.2 kqueuex.2 \
466	kqueue.2 EV_SET.3
467MLINKS+=link.2 linkat.2
468MLINKS+=madvise.2 posix_madvise.2
469MLINKS+=mkdir.2 mkdirat.2
470MLINKS+=mkfifo.2 mkfifoat.2
471MLINKS+=mknod.2 mknodat.2
472MLINKS+=mlock.2 munlock.2
473MLINKS+=mlockall.2 munlockall.2
474MLINKS+=modnext.2 modfnext.2
475MLINKS+=mount.2 nmount.2 \
476	mount.2 unmount.2
477MLINKS+=mq_receive.2 mq_timedreceive.2
478MLINKS+=mq_send.2 mq_timedsend.2
479MLINKS+=ntp_adjtime.2 ntp_gettime.2
480MLINKS+=open.2 openat.2
481MLINKS+=pathconf.2 fpathconf.2
482MLINKS+=pathconf.2 lpathconf.2
483MLINKS+=pdfork.2 pdgetpid.2\
484	pdfork.2 pdkill.2
485MLINKS+=pipe.2 pipe2.2
486MLINKS+=poll.2 ppoll.2
487MLINKS+=rctl_add_rule.2 rctl_get_limits.2 \
488	rctl_add_rule.2 rctl_get_racct.2 \
489	rctl_add_rule.2 rctl_get_rules.2 \
490	rctl_add_rule.2 rctl_remove_rule.2
491MLINKS+=read.2 pread.2 \
492	read.2 preadv.2 \
493	read.2 readv.2
494MLINKS+=readlink.2 readlinkat.2
495MLINKS+=recv.2 recvfrom.2 \
496	recv.2 recvmmsg.2 \
497	recv.2 recvmsg.2
498MLINKS+=rename.2 renameat.2
499MLINKS+=rtprio.2 rtprio_thread.2
500MLINKS+=sched_get_priority_max.2 sched_get_priority_min.2 \
501	sched_get_priority_max.2 sched_rr_get_interval.2
502MLINKS+=sched_setparam.2 sched_getparam.2
503MLINKS+=sched_setscheduler.2 sched_getscheduler.2
504MLINKS+=sctp_generic_sendmsg.2 sctp_generic_sendmsg_iov.2
505MLINKS+=select.2 FD_CLR.3 \
506	select.2 FD_ISSET.3 \
507	select.2 FD_SET.3 \
508	select.2 FD_ZERO.3
509MLINKS+=send.2 sendmmsg.2 \
510	send.2 sendmsg.2 \
511	send.2 sendto.2
512MLINKS+=setpgid.2 setpgrp.2
513MLINKS+=setresuid.2 getresgid.2 \
514	setresuid.2 getresuid.2 \
515	setresuid.2 setresgid.2
516MLINKS+=setuid.2 setegid.2 \
517	setuid.2 seteuid.2 \
518	setuid.2 setgid.2
519MLINKS+=shmat.2 shmdt.2
520MLINKS+=shm_open.2 memfd_create.3 \
521	shm_open.2 shm_create_largepage.3 \
522	shm_open.2 shm_unlink.2 \
523	shm_open.2 shm_rename.2
524MLINKS+=sigwaitinfo.2 sigtimedwait.2
525MLINKS+=stat.2 fstat.2 \
526	stat.2 fstatat.2 \
527	stat.2 lstat.2
528MLINKS+=statfs.2 fstatfs.2
529MLINKS+=swapon.2 swapoff.2
530MLINKS+=symlink.2 symlinkat.2
531MLINKS+=syscall.2 __syscall.2
532MLINKS+=timer_settime.2 timer_getoverrun.2 \
533	timer_settime.2 timer_gettime.2
534MLINKS+=timerfd.2 timerfd_create.2 \
535	timerfd.2 timerfd_gettime.2 \
536	timerfd.2 timerfd_settime.2
537MLINKS+=thr_kill.2 thr_kill2.2
538MLINKS+=truncate.2 ftruncate.2
539MLINKS+=unlink.2 unlinkat.2
540MLINKS+=unlink.2 funlinkat.2
541MLINKS+=utimensat.2 futimens.2
542MLINKS+=utimes.2 futimes.2 \
543	utimes.2 futimesat.2 \
544	utimes.2 lutimes.2
545MLINKS+=wait.2 wait3.2 \
546	wait.2 wait4.2 \
547	wait.2 waitpid.2 \
548	wait.2 waitid.2 \
549	wait.2 wait6.2
550MLINKS+=write.2 pwrite.2 \
551	write.2 pwritev.2 \
552	write.2 writev.2
553.endif # ${LIB} == "sys"
554