]> git.ipfire.org Git - thirdparty/glibc.git/blame - debug/Makefile
debug: Add fortify wprintf tests
[thirdparty/glibc.git] / debug / Makefile
CommitLineData
6d7e8eda 1# Copyright (C) 1998-2023 Free Software Foundation, Inc.
db27f125 2# Copyright The GNU Toolchain Authors.
2de7874e
UD
3# This file is part of the GNU C Library.
4
5# The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
6# modify it under the terms of the GNU Lesser General Public
7# License as published by the Free Software Foundation; either
8# version 2.1 of the License, or (at your option) any later version.
2de7874e
UD
9
10# The GNU C Library is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 13# Lesser General Public License for more details.
2de7874e 14
41bdb6e2 15# You should have received a copy of the GNU Lesser General Public
59ba27a6 16# License along with the GNU C Library; if not, see
5a82c748 17# <https://www.gnu.org/licenses/>.
2de7874e
UD
18
19#
20# Sub-makefile for debug portion of the library.
21#
22subdir := debug
23
a5f891ac
JM
24include ../Makeconfig
25
2de7874e
UD
26headers := execinfo.h
27
ee586a6d
RM
28# Note that ptsname_r_chk and getlogin_r are not here, but in
29# login/Makefile instead. If that subdir is omitted from the
30# build, its _FORTIFY_SOURCE support will be too.
4e464116 31routines = \
e475bc25 32 $(static-only-routines) \
4e464116
FW
33 ____longjmp_chk \
34 asprintf_chk \
35 backtrace \
36 backtracesyms \
37 backtracesymsfd \
38 chk_fail \
39 confstr_chk \
40 dprintf_chk \
41 explicit_bzero_chk \
42 fdelt_chk \
43 fgets_chk \
44 fgets_u_chk \
45 fgetws_chk \
46 fgetws_u_chk \
47 fortify_fail \
48 fprintf_chk \
49 fread_chk \
50 fread_u_chk \
51 fwprintf_chk \
52 getcwd_chk \
53 getdomainname_chk \
54 getgroups_chk \
55 gethostname_chk \
56 gets_chk \
57 getwd_chk \
58 longjmp_chk \
59 mbsnrtowcs_chk \
60 mbsrtowcs_chk \
61 mbstowcs_chk \
62 memcpy_chk \
63 memmove_chk \
64 mempcpy_chk \
65 memset_chk \
66 noophooks \
67 obprintf_chk \
68 poll_chk \
69 ppoll_chk \
70 pread64_chk \
71 pread_chk \
72 printf_chk \
73 read_chk \
74 readlink_chk \
75 readlinkat_chk \
76 readonly-area \
77 realpath_chk \
78 recv_chk \
79 recvfrom_chk \
80 snprintf_chk \
81 sprintf_chk \
82 stack_chk_fail \
83 stpcpy_chk \
84 stpncpy_chk \
85 strcat_chk \
86 strcpy_chk \
454a20c8
FW
87 strlcat_chk \
88 strlcpy_chk \
4e464116
FW
89 strncat_chk \
90 strncpy_chk \
91 swprintf_chk \
92 ttyname_r_chk \
93 vasprintf_chk \
94 vdprintf_chk \
95 vfprintf_chk \
96 vfwprintf_chk \
97 vobprintf_chk \
98 vprintf_chk \
99 vsnprintf_chk \
100 vsprintf_chk \
101 vswprintf_chk \
102 vwprintf_chk \
103 wcpcpy_chk \
104 wcpncpy_chk \
105 wcrtomb_chk \
106 wcscat_chk \
107 wcscpy_chk \
b54e5d1c
FW
108 wcslcat_chk \
109 wcslcpy_chk \
4e464116
FW
110 wcsncat_chk \
111 wcsncpy_chk \
112 wcsnrtombs_chk \
113 wcsrtombs_chk \
114 wcstombs_chk \
115 wctomb_chk \
116 wmemcpy_chk \
117 wmemmove_chk \
118 wmempcpy_chk \
119 wmemset_chk \
120 wprintf_chk \
4e464116 121 # routines
34aec973 122static-only-routines := stack_chk_fail_local
2de7874e 123
2b4fca86
L
124# Don't add stack_chk_fail_local.o to libc.a since __stack_chk_fail_local
125# is an alias of __stack_chk_fail in stack_chk_fail.o.
126elide-routines.o := stack_chk_fail_local
127
524a8ef2 128# Building the stack-protector failure routines with stack protection
38cade0c
FW
129# is not required since we have already failed a stack check and are
130# exiting the process. However, the local aliases which jump to the
131# real routines should still be compiled with stack protection
132# (stack_chk_fail_local.c), so that the statically linked parts of the
133# library have the expected flags.
524a8ef2 134
36975e8e 135CFLAGS-stack_chk_fail.c += $(no-stack-protector)
36975e8e
L
136
137CFLAGS-backtrace.c += -fno-omit-frame-pointer -funwind-tables
138CFLAGS-sprintf_chk.c += $(libio-mtsafe)
139CFLAGS-snprintf_chk.c += $(libio-mtsafe)
140CFLAGS-vsprintf_chk.c += $(libio-mtsafe)
141CFLAGS-vsnprintf_chk.c += $(libio-mtsafe)
142CFLAGS-asprintf_chk.c += $(libio-mtsafe)
143CFLAGS-vasprintf_chk.c += $(libio-mtsafe)
144CFLAGS-obprintf_chk.c += $(libio-mtsafe)
145CFLAGS-dprintf_chk.c += $(libio-mtsafe) -fexceptions
146CFLAGS-vdprintf_chk.c += $(libio-mtsafe) -fexceptions
147CFLAGS-printf_chk.c += $(libio-mtsafe) -fexceptions
148CFLAGS-fprintf_chk.c += $(libio-mtsafe) -fexceptions
149CFLAGS-vprintf_chk.c += $(libio-mtsafe) -fexceptions
150CFLAGS-vfprintf_chk.c += $(libio-mtsafe) -fexceptions
151CFLAGS-gets_chk.c += $(libio-mtsafe) -fexceptions
152CFLAGS-fgets_chk.c += $(libio-mtsafe) -fexceptions
153CFLAGS-fgets_u_chk.c += $(libio-mtsafe) -fexceptions
154CFLAGS-fread_chk.c += $(libio-mtsafe) -fexceptions
155CFLAGS-fread_u_chk.c += $(libio-mtsafe) -fexceptions
156CFLAGS-swprintf_chk.c += $(libio-mtsafe)
157CFLAGS-vswprintf_chk.c += $(libio-mtsafe)
158CFLAGS-wprintf_chk.c += $(libio-mtsafe) -fexceptions
159CFLAGS-fwprintf_chk.c += $(libio-mtsafe) -fexceptions
160CFLAGS-vwprintf_chk.c += $(libio-mtsafe) -fexceptions
161CFLAGS-vfwprintf_chk.c += $(libio-mtsafe) -fexceptions
162CFLAGS-fgetws_chk.c += $(libio-mtsafe) -fexceptions
163CFLAGS-fgetws_u_chk.c += $(libio-mtsafe) -fexceptions
164CFLAGS-read_chk.c += -fexceptions -fasynchronous-unwind-tables
165CFLAGS-pread_chk.c += -fexceptions -fasynchronous-unwind-tables
166CFLAGS-pread64_chk.c += -fexceptions -fasynchronous-unwind-tables
167CFLAGS-recv_chk.c += -fexceptions -fasynchronous-unwind-tables
168CFLAGS-recvfrom_chk.c += -fexceptions -fasynchronous-unwind-tables
fed806c3
MF
169
170# Need to make sure the settings here override what configure might have
171# set up for us, so keep the CFLAGS/CPPFLAGS split logical as the order is:
172# <user CFLAGS> <test CFLAGS> <user CPPFLAGS> <test CPPFLAGS>
36975e8e 173CFLAGS-tst-longjmp_chk.c += -fexceptions -fasynchronous-unwind-tables
20c894d2 174CPPFLAGS-tst-longjmp_chk.c += $(no-fortify-source),-D_FORTIFY_SOURCE=1
36975e8e 175CFLAGS-tst-longjmp_chk2.c += -fexceptions -fasynchronous-unwind-tables
20c894d2 176CPPFLAGS-tst-longjmp_chk2.c += $(no-fortify-source),-D_FORTIFY_SOURCE=1
36975e8e 177CFLAGS-tst-longjmp_chk3.c += -fexceptions -fasynchronous-unwind-tables
20c894d2
FB
178CPPFLAGS-tst-longjmp_chk3.c += $(no-fortify-source),-D_FORTIFY_SOURCE=1
179CPPFLAGS-tst-realpath-chk.c += $(no-fortify-source),-D_FORTIFY_SOURCE=2
180CPPFLAGS-tst-chk-cancel.c += $(no-fortify-source),-D_FORTIFY_SOURCE=2
be7a5468 181CFLAGS-tst-sprintf-fortify-rdonly.c += $(no-fortify-source),-D_FORTIFY_SOURCE=2
446e2c93 182CFLAGS-tst-fortify-syslog.c += $(no-fortify-source),-D_FORTIFY_SOURCE=2
a8a4c94a 183CFLAGS-tst-fortify-wide.c += $(no-fortify-source),-D_FORTIFY_SOURCE=2
2de7874e 184
db27f125
SP
185# _FORTIFY_SOURCE tests.
186# Auto-generate tests for _FORTIFY_SOURCE for different levels, compilers and
187# preprocessor conditions based on tst-fortify.c.
188#
189# To add a new test condition, define a cflags-$(cond) make variable to set
190# CFLAGS for the file.
191
192tests-all-chk = tst-fortify
2e274cd8
AZ
193tests-c-def-chk =
194tests-cc-def-chk =
195tests-c-time64-chk =
196tests-cc-time64-chk =
db27f125
SP
197
198CFLAGS-tst-fortify.c += -Wno-format -Wno-deprecated-declarations -Wno-error
199
200# No additional flags for the default tests.
201define cflags-default
202endef
203
204define cflags-lfs
2e274cd8 205CFLAGS-tst-fortify-$(1)-lfs-$(2)-$(3).$(1) += -D_FILE_OFFSET_BITS=64
db27f125
SP
206endef
207
fcfc9086 208define cflags-nongnu
2e274cd8 209CFLAGS-tst-fortify-$(1)-nongnu-$(2)-$(3).$(1) += -D_LARGEFILE64_SOURCE=1
fcfc9086
SP
210endef
211
212src-chk-nongnu = \#undef _GNU_SOURCE
213
7a344d1d 214# We know these tests have problems with format strings, this is what
7caa5054
ZW
215# we are testing. Disable that warning. They are also testing
216# deprecated functions (notably gets) so disable that warning as well.
217# And they also generate warnings from warning attributes, which
218# cannot be disabled via pragmas, so require -Wno-error to be used.
db27f125 219define gen-chk-test
2e274cd8 220tests-$(1)-$(4)-chk += tst-fortify-$(1)-$(2)-$(3)-$(4)
20c894d2 221CFLAGS-tst-fortify-$(1)-$(2)-$(3)-$(4).$(1) += $(no-fortify-source),-D_FORTIFY_SOURCE=$(3) -Wno-format \
db27f125
SP
222 -Wno-deprecated-declarations \
223 -Wno-error
2e274cd8
AZ
224$(eval $(call cflags-$(2),$(1),$(3),$(4)))
225$(objpfx)tst-fortify-$(1)-$(2)-$(3)-$(4).$(1): tst-fortify.c Makefile
db27f125 226 ( echo "/* Autogenerated from Makefile. */"; \
fcfc9086 227 echo "$(src-chk-$(2))"; \
db27f125
SP
228 echo "#include \"tst-fortify.c\"" ) > $$@.tmp
229 mv $$@.tmp $$@
230endef
231
232chk-extensions = c cc
fcfc9086 233chk-types = default lfs nongnu
2e274cd8
AZ
234# 64 bit time_t implies LFS.
235chk-types-time64 = default nongnu
db27f125
SP
236chk-levels = 1 2 3
237
238$(foreach e,$(chk-extensions), \
239 $(foreach t,$(chk-types), \
240 $(foreach l,$(chk-levels), \
2e274cd8 241 $(eval $(call gen-chk-test,$(e),$(t),$(l),def)))))
db27f125 242
2e274cd8
AZ
243tests-all-chk += $(tests-c-def-chk) $(tests-cc-def-chk)
244
245$(foreach e,$(chk-extensions), \
246 $(foreach t,$(chk-types-time64), \
247 $(foreach l,$(chk-levels), \
248 $(eval $(call gen-chk-test,$(e),$(t),$(l),time64)))))
249
250tests-all-time64-chk += $(tests-c-time64-chk) $(tests-cc-time64-chk)
db27f125
SP
251
252define link-cc
253LDLIBS-$(1) = -lstdc++
254endef
2e274cd8
AZ
255$(foreach t,$(tests-cc-def-chk), $(eval $(call link-cc,$(t))))
256$(foreach t,$(tests-cc-time64-chk), $(eval $(call link-cc,$(t))))
5852d1e5 257
31d470ac
JM
258# backtrace_symbols only works if we link with -rdynamic. backtrace
259# requires unwind tables on most architectures.
260CFLAGS-tst-backtrace2.c += -funwind-tables
261CFLAGS-tst-backtrace3.c += -funwind-tables
262CFLAGS-tst-backtrace4.c += -funwind-tables
263CFLAGS-tst-backtrace5.c += -funwind-tables
d400dcac 264CFLAGS-tst-backtrace6.c += -funwind-tables
31d470ac
JM
265LDFLAGS-tst-backtrace2 = -rdynamic
266LDFLAGS-tst-backtrace3 = -rdynamic
267LDFLAGS-tst-backtrace4 = -rdynamic
268LDFLAGS-tst-backtrace5 = -rdynamic
d400dcac 269LDFLAGS-tst-backtrace6 = -rdynamic
31d470ac 270
36975e8e 271CFLAGS-tst-ssp-1.c += -fstack-protector-all
ed421fca 272
0d50f477
FW
273# Disable compiler optimizations around vsprintf (the function under test).
274CFLAGS-tst-sprintf-fortify-unchecked.c = \
275 -fno-builtin-vsprintf -fno-builtin-__vsprintf_chk
276
e475bc25
CD
277tests = \
278 $(tests-all-chk) \
279 backtrace-tst \
280 test-stpcpy_chk \
281 test-strcpy_chk \
282 tst-backtrace2 \
283 tst-backtrace3 \
284 tst-backtrace4 \
285 tst-backtrace5 \
286 tst-backtrace6 \
a8a4c94a 287 tst-fortify-wide \
e475bc25
CD
288 tst-longjmp_chk \
289 tst-longjmp_chk2 \
290 tst-realpath-chk \
be7a5468 291 tst-sprintf-fortify-rdonly \
e475bc25
CD
292 tst-sprintf-fortify-unchecked \
293 # tests
2de7874e 294
2e274cd8 295tests-time64 += \
e475bc25
CD
296 $(tests-all-time64-chk) \
297 # tests-time64
2e274cd8 298
446e2c93
AZ
299tests-container += \
300 tst-fortify-syslog \
301 # tests-container
302
ed421fca
L
303ifeq ($(have-ssp),yes)
304tests += tst-ssp-1
305endif
306
dc30acf2 307ifeq ($(have-thread-library), yes)
cd84e30c 308tests += tst-chk-cancel
dc30acf2
AS
309endif
310
44a6213c 311ifeq (,$(CXX))
1a8335a4 312tests-unsupported = $(tests-cc-def-chk) $(tests-cc-time64-chk)
e4693aa7
RM
313endif
314
65ccd641 315extra-libs = libpcprofile
107f8131
UD
316extra-libs-others = $(extra-libs)
317
87843f15
UD
318libpcprofile-routines = pcprofile
319libpcprofile-inhibit-o = $(filter-out .os,$(object-suffixes))
320
08920a50 321others = pcprofiledump
6c3ebebd
UD
322install-bin = pcprofiledump
323install-bin-script = xtrace
cab30d75 324
65ccd641 325generated += xtrace
6ce7ab19 326
2de7874e 327include ../Rules
107f8131 328
f881f6ff
AS
329ifeq ($(run-built-tests),yes)
330LOCALES := de_DE.UTF-8
331include ../gen-locales.mk
332
db27f125
SP
333define chk-gen-locales
334$(objpfx)$(1).out: $(gen-locales)
335endef
336$(foreach t, $(tests-all-chk), $(eval $(call chk-gen-locales,$(t))))
2e274cd8 337$(foreach t, $(tests-all-time64-chk), $(eval $(call chk-gen-locales,$(t))))
f881f6ff
AS
338endif
339
f50fa10c
UD
340sLIBdir := $(shell echo $(slibdir) | sed 's,lib\(\|64\)$$,\\\\$$LIB,')
341
cab30d75 342$(objpfx)pcprofiledump: $(objpfx)pcprofiledump.o
cab30d75
UD
343
344$(objpfx)xtrace: xtrace.sh
345 rm -f $@.new
5188a9d0
RG
346 sed -e 's|@VERSION@|$(version)|' -e 's|@SLIBDIR@|$(sLIBdir)|' \
347 -e 's|@BINDIR@|$(bindir)|' -e 's|@PKGVERSION@|$(PKGVERSION)|' \
8b748aed 348 -e 's|@REPORT_BUGS_TO@|$(REPORT_BUGS_TO)|' $^ > $@.new \
cab30d75 349 && rm -f $@ && mv $@.new $@ && chmod +x $@
dc30acf2 350
cd84e30c 351$(objpfx)tst-chk-cancel: $(shared-thread-library)