mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
Add a target module and livepatch pair that verify module function patching via a proc entry. Two test cases cover both the klp_enable_patch path (target loaded before livepatch) and the klp_module_coming path (livepatch loaded before target). Signed-off-by: Pablo Alessandro Santos Hugen <phugen@redhat.com> Acked-by: Miroslav Benes <mbenes@suse.cz> Acked-by: Joe Lawrence <joe.lawrence@redhat.com> Reviewed-by: Petr Mladek <pmladek@suse.com> Tested-by: Petr Mladek <pmladek@suse.com> Link: https://patch.msgid.link/20260320201135.1203992-1-phugen@redhat.com Signed-off-by: Petr Mladek <pmladek@suse.com>
30 lines
813 B
Makefile
30 lines
813 B
Makefile
TESTMODS_DIR := $(realpath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
|
|
KDIR ?= /lib/modules/$(shell uname -r)/build
|
|
|
|
obj-m += test_klp_atomic_replace.o \
|
|
test_klp_callbacks_busy.o \
|
|
test_klp_callbacks_demo.o \
|
|
test_klp_callbacks_demo2.o \
|
|
test_klp_callbacks_mod.o \
|
|
test_klp_kprobe.o \
|
|
test_klp_livepatch.o \
|
|
test_klp_mod_patch.o \
|
|
test_klp_mod_target.o \
|
|
test_klp_shadow_vars.o \
|
|
test_klp_state.o \
|
|
test_klp_state2.o \
|
|
test_klp_state3.o \
|
|
test_klp_syscall.o
|
|
|
|
# Ensure that KDIR exists, otherwise skip the compilation
|
|
modules:
|
|
ifneq ("$(wildcard $(KDIR))", "")
|
|
$(Q)$(MAKE) -C $(KDIR) modules KBUILD_EXTMOD=$(TESTMODS_DIR)
|
|
endif
|
|
|
|
# Ensure that KDIR exists, otherwise skip the clean target
|
|
clean:
|
|
ifneq ("$(wildcard $(KDIR))", "")
|
|
$(Q)$(MAKE) -C $(KDIR) clean KBUILD_EXTMOD=$(TESTMODS_DIR)
|
|
endif
|