1# SPDX-License-Identifier: GPL-2.0
2# Makefile for mm selftests
3
4LOCAL_HDRS += $(selfdir)/mm/local_config.h $(top_srcdir)/mm/gup_test.h
5
6include local_config.mk
7
8ifeq ($(ARCH),)
9
10ifeq ($(CROSS_COMPILE),)
11uname_M := $(shell uname -m 2>/dev/null || echo not)
12else
13uname_M := $(shell echo $(CROSS_COMPILE) | grep -o '^[a-z0-9]\+')
14endif
15ARCH ?= $(shell echo $(uname_M) | sed -e 's/aarch64.*/arm64/' -e 's/ppc64.*/ppc64/')
16endif
17
18# Without this, failed build products remain, with up-to-date timestamps,
19# thus tricking Make (and you!) into believing that All Is Well, in subsequent
20# make invocations:
21.DELETE_ON_ERROR:
22
23# Avoid accidental wrong builds, due to built-in rules working just a little
24# bit too well--but not quite as well as required for our situation here.
25#
26# In other words, "make $SOME_TEST" is supposed to fail to build at all,
27# because this Makefile only supports either "make" (all), or "make /full/path".
28# However,  the built-in rules, if not suppressed, will pick up CFLAGS and the
29# initial LDLIBS (but not the target-specific LDLIBS, because those are only
30# set for the full path target!). This causes it to get pretty far into building
31# things despite using incorrect values such as an *occasionally* incomplete
32# LDLIBS.
33MAKEFLAGS += --no-builtin-rules
34
35CFLAGS = -Wall -I $(top_srcdir) -I $(top_srcdir)/tools/include/uapi $(EXTRA_CFLAGS) $(KHDR_INCLUDES)
36LDLIBS = -lrt -lpthread
37
38TEST_GEN_PROGS = cow
39TEST_GEN_PROGS += compaction_test
40TEST_GEN_PROGS += gup_test
41TEST_GEN_PROGS += hmm-tests
42TEST_GEN_PROGS += hugetlb-madvise
43TEST_GEN_PROGS += hugepage-mmap
44TEST_GEN_PROGS += hugepage-mremap
45TEST_GEN_PROGS += hugepage-shm
46TEST_GEN_PROGS += hugepage-vmemmap
47TEST_GEN_PROGS += khugepaged
48TEST_GEN_PROGS += madv_populate
49TEST_GEN_PROGS += map_fixed_noreplace
50TEST_GEN_PROGS += map_hugetlb
51TEST_GEN_PROGS += map_populate
52TEST_GEN_PROGS += memfd_secret
53TEST_GEN_PROGS += migration
54TEST_GEN_PROGS += mkdirty
55TEST_GEN_PROGS += mlock-random-test
56TEST_GEN_PROGS += mlock2-tests
57TEST_GEN_PROGS += mrelease_test
58TEST_GEN_PROGS += mremap_dontunmap
59TEST_GEN_PROGS += mremap_test
60TEST_GEN_PROGS += on-fault-limit
61TEST_GEN_PROGS += thuge-gen
62TEST_GEN_PROGS += transhuge-stress
63TEST_GEN_PROGS += uffd-stress
64TEST_GEN_PROGS += uffd-unit-tests
65TEST_GEN_PROGS += soft-dirty
66TEST_GEN_PROGS += split_huge_page_test
67TEST_GEN_PROGS += ksm_tests
68TEST_GEN_PROGS += ksm_functional_tests
69TEST_GEN_PROGS += mdwe_test
70
71ifeq ($(ARCH),x86_64)
72CAN_BUILD_I386 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_32bit_program.c -m32)
73CAN_BUILD_X86_64 := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_64bit_program.c)
74CAN_BUILD_WITH_NOPIE := $(shell ./../x86/check_cc.sh "$(CC)" ../x86/trivial_program.c -no-pie)
75
76VMTARGETS := protection_keys
77BINARIES_32 := $(VMTARGETS:%=%_32)
78BINARIES_64 := $(VMTARGETS:%=%_64)
79
80ifeq ($(CAN_BUILD_WITH_NOPIE),1)
81CFLAGS += -no-pie
82endif
83
84ifeq ($(CAN_BUILD_I386),1)
85TEST_GEN_PROGS += $(BINARIES_32)
86endif
87
88ifeq ($(CAN_BUILD_X86_64),1)
89TEST_GEN_PROGS += $(BINARIES_64)
90endif
91else
92
93ifneq (,$(findstring $(ARCH),ppc64))
94TEST_GEN_PROGS += protection_keys
95endif
96
97endif
98
99ifneq (,$(filter $(ARCH),arm64 ia64 mips64 parisc64 ppc64 riscv64 s390x sparc64 x86_64))
100TEST_GEN_PROGS += va_high_addr_switch
101TEST_GEN_PROGS += virtual_address_range
102TEST_GEN_PROGS += write_to_hugetlbfs
103endif
104
105TEST_PROGS := run_vmtests.sh
106
107TEST_FILES := test_vmalloc.sh
108TEST_FILES += test_hmm.sh
109TEST_FILES += va_high_addr_switch.sh
110
111include ../lib.mk
112
113$(TEST_GEN_PROGS): vm_util.c
114
115$(OUTPUT)/uffd-stress: uffd-common.c
116$(OUTPUT)/uffd-unit-tests: uffd-common.c
117
118ifeq ($(ARCH),x86_64)
119BINARIES_32 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_32))
120BINARIES_64 := $(patsubst %,$(OUTPUT)/%,$(BINARIES_64))
121
122define gen-target-rule-32
123$(1) $(1)_32: $(OUTPUT)/$(1)_32
124.PHONY: $(1) $(1)_32
125endef
126
127define gen-target-rule-64
128$(1) $(1)_64: $(OUTPUT)/$(1)_64
129.PHONY: $(1) $(1)_64
130endef
131
132ifeq ($(CAN_BUILD_I386),1)
133$(BINARIES_32): CFLAGS += -m32 -mxsave
134$(BINARIES_32): LDLIBS += -lrt -ldl -lm
135$(BINARIES_32): $(OUTPUT)/%_32: %.c
136	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
137$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-32,$(t))))
138endif
139
140ifeq ($(CAN_BUILD_X86_64),1)
141$(BINARIES_64): CFLAGS += -m64 -mxsave
142$(BINARIES_64): LDLIBS += -lrt -ldl
143$(BINARIES_64): $(OUTPUT)/%_64: %.c
144	$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(notdir $^) $(LDLIBS) -o $@
145$(foreach t,$(VMTARGETS),$(eval $(call gen-target-rule-64,$(t))))
146endif
147
148# x86_64 users should be encouraged to install 32-bit libraries
149ifeq ($(CAN_BUILD_I386)$(CAN_BUILD_X86_64),01)
150all: warn_32bit_failure
151
152warn_32bit_failure:
153	@echo "Warning: you seem to have a broken 32-bit build" 2>&1;		\
154	echo  "environment. This will reduce test coverage of 64-bit" 2>&1;	\
155	echo  "kernels. If you are using a Debian-like distribution," 2>&1;	\
156	echo  "try:"; 2>&1;							\
157	echo  "";								\
158	echo  "  apt-get install gcc-multilib libc6-i386 libc6-dev-i386";	\
159	echo  "";								\
160	echo  "If you are using a Fedora-like distribution, try:";		\
161	echo  "";								\
162	echo  "  yum install glibc-devel.*i686";				\
163	exit 0;
164endif
165endif
166
167# IOURING_EXTRA_LIBS may get set in local_config.mk, or it may be left empty.
168$(OUTPUT)/cow: LDLIBS += $(IOURING_EXTRA_LIBS)
169
170$(OUTPUT)/mlock-random-test $(OUTPUT)/memfd_secret: LDLIBS += -lcap
171
172$(OUTPUT)/ksm_tests: LDLIBS += -lnuma
173
174$(OUTPUT)/migration: LDLIBS += -lnuma
175
176local_config.mk local_config.h: check_config.sh
177	/bin/sh ./check_config.sh $(CC)
178
179EXTRA_CLEAN += local_config.mk local_config.h
180
181ifeq ($(IOURING_EXTRA_LIBS),)
182all: warn_missing_liburing
183
184warn_missing_liburing:
185	@echo ; \
186	echo "Warning: missing liburing support. Some tests will be skipped." ; \
187	echo
188endif
189