linux/tools/testing/selftests/livepatch
Rui Qi 7203abb3f8 selftests/livepatch: fix resource leak in test_klp_syscall init error path
In livepatch_init(), if klp_enable_patch() fails, the previously
created kobject and sysfs file are never cleaned up, causing a
resource leak. Capture the return value and add proper cleanup
on the error path.

Signed-off-by: Rui Qi <qirui.001@bytedance.com>
Acked-by: Miroslav Benes <mbenes@suse.cz>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Link: https://patch.msgid.link/20260604083208.1071428-1-qirui.001@bytedance.com
Signed-off-by: Petr Mladek <pmladek@suse.com>
2026-06-09 12:38:33 +02:00
..
test_modules selftests/livepatch: fix resource leak in test_klp_syscall init error path 2026-06-09 12:38:33 +02:00
.gitignore
config
functions.sh selftests: livepatch: set LC_ALL=C to fix locale-dependent test failure 2026-06-03 14:59:29 +02:00
Makefile selftests: livepatch: test livepatching a kprobed function 2024-10-22 17:13:11 +02:00
README
settings
test_klp-call_getpid.c
test-callbacks.sh selftests/livepatch: Replace hardcoded module name with variable in test-callbacks.sh 2024-12-09 11:12:43 +01:00
test-ftrace.sh selftests: livepatch: test-ftrace: livepatch a traced function 2026-03-06 14:54:28 +01:00
test-kprobe.sh selftests: livepatch: Replace true/false module parameter by y/n 2026-05-06 14:09:33 +02:00
test-livepatch.sh selftests/livepatch: add test for module function patching 2026-03-30 15:37:31 +02:00
test-shadow-vars.sh
test-state.sh selftests: livepatch: rename KLP_SYSFS_DIR to SYSFS_KLP_DIR 2024-10-22 17:12:46 +02:00
test-syscall.sh selftests: livepatch: save and restore kprobe state 2024-10-22 17:13:11 +02:00
test-sysfs.sh selftests: livepatch: Check if stack_order sysfs attribute exists 2026-05-06 14:09:33 +02:00

====================
Livepatch Self Tests
====================

This is a small set of sanity tests for the kernel livepatching.

The test suite loads and unloads several test kernel modules to verify
livepatch behavior.  Debug information is logged to the kernel's message
buffer and parsed for expected messages.  (Note: the tests will compare
the message buffer for only the duration of each individual test.)


Config
------

Set CONFIG_LIVEPATCH=y option and it's prerequisites.


Building the tests
------------------

To only build the tests without running them, run:

  % make -C tools/testing/selftests/livepatch

The command above will compile all test modules and test programs, making them
ready to be packaged if so desired.

Running the tests
-----------------

Test kernel modules are built before running the livepatch selftests.  The
modules are located under test_modules directory, and are built as out-of-tree
modules.  This is specially useful since the same sources can be built and
tested on systems with different kABI, ensuring they the tests are backwards
compatible.  The modules will be loaded by the test scripts using insmod.

To run the livepatch selftests, from the top of the kernel source tree:

  % make -C tools/testing/selftests TARGETS=livepatch run_tests

or

  % make kselftest TARGETS=livepatch


Adding tests
------------

See the common functions.sh file for the existing collection of utility
functions, most importantly setup_config(), start_test() and
check_result().  The latter function greps the kernel's ring buffer for
"livepatch:" and "test_klp" strings, so tests be sure to include one of
those strings for result comparison.  Other utility functions include
general module loading and livepatch loading helpers (waiting for patch
transitions, sysfs entries, etc.)