2024-03-02 00:18:20 +08:00
|
|
|
From bc9f5d244d3a4527c6390c9c0812b2d34b4655e5 Mon Sep 17 00:00:00 2001
|
2020-02-27 17:15:29 -05:00
|
|
|
From: Zhipeng Xie <xiezhipeng1@huawei.com>
|
|
|
|
|
Date: Tue, 25 Feb 2020 23:40:37 -0500
|
2024-03-02 00:18:20 +08:00
|
|
|
Subject: [PATCH 07/38] livepatch-patch-hook: support no active after load
|
2020-02-27 17:15:29 -05:00
|
|
|
|
2021-11-16 12:10:06 +08:00
|
|
|
suppport Don't active patch after loading the patch when
|
2020-02-27 17:15:29 -05:00
|
|
|
DISABLE_AFTER_LOAD is set.
|
|
|
|
|
|
|
|
|
|
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
|
|
|
|
|
---
|
|
|
|
|
kmod/patch/livepatch-patch-hook.c | 2 ++
|
2021-11-16 12:10:06 +08:00
|
|
|
kpatch-build/kpatch-build | 5 +++++
|
|
|
|
|
2 files changed, 7 insertions(+)
|
2020-02-27 17:15:29 -05:00
|
|
|
|
|
|
|
|
diff --git a/kmod/patch/livepatch-patch-hook.c b/kmod/patch/livepatch-patch-hook.c
|
2021-11-16 12:10:06 +08:00
|
|
|
index 3d13ab9..b578ef3 100644
|
2020-02-27 17:15:29 -05:00
|
|
|
--- a/kmod/patch/livepatch-patch-hook.c
|
|
|
|
|
+++ b/kmod/patch/livepatch-patch-hook.c
|
2021-11-16 12:10:06 +08:00
|
|
|
@@ -576,6 +576,7 @@ static int __init patch_init(void)
|
2020-02-27 17:15:29 -05:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
+#if !defined(DISABLE_AFTER_LOAD)
|
|
|
|
|
ret = klp_enable_patch(lpatch);
|
|
|
|
|
if (ret) {
|
|
|
|
|
#ifndef HAVE_SIMPLE_ENABLE
|
2021-11-16 12:10:06 +08:00
|
|
|
@@ -584,6 +585,7 @@ static int __init patch_init(void)
|
2020-02-27 17:15:29 -05:00
|
|
|
patch_free_livepatch(lpatch);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
+#endif
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
out:
|
|
|
|
|
diff --git a/kpatch-build/kpatch-build b/kpatch-build/kpatch-build
|
2024-03-02 00:18:20 +08:00
|
|
|
index 80d7209..7f3bbce 100755
|
2020-02-27 17:15:29 -05:00
|
|
|
--- a/kpatch-build/kpatch-build
|
|
|
|
|
+++ b/kpatch-build/kpatch-build
|
2024-03-02 00:18:20 +08:00
|
|
|
@@ -1384,6 +1384,11 @@ export KCFLAGS="-I$DATADIR/patch $ARCH_KCFLAGS"
|
2021-11-16 12:10:06 +08:00
|
|
|
if [[ "$USE_KLP" -eq 0 ]]; then
|
|
|
|
|
export KCPPFLAGS="-D__KPATCH_MODULE__"
|
2020-02-27 17:15:29 -05:00
|
|
|
fi
|
2021-11-16 12:10:06 +08:00
|
|
|
+
|
2020-02-27 17:15:29 -05:00
|
|
|
+if [[ -n "$DISABLE_AFTER_LOAD" ]];then
|
2021-11-16 12:10:06 +08:00
|
|
|
+ export KCPPFLAGS="-DDISABLE_AFTER_LOAD $KCPPFLAGS"
|
2020-02-27 17:15:29 -05:00
|
|
|
+fi
|
|
|
|
|
+
|
2021-11-16 12:10:06 +08:00
|
|
|
save_env
|
2020-02-27 17:15:29 -05:00
|
|
|
|
2021-11-16 12:10:06 +08:00
|
|
|
echo "Building patch module: $MODNAME.ko"
|
2020-02-27 17:15:29 -05:00
|
|
|
--
|
2023-01-30 16:10:43 +08:00
|
|
|
2.33.0
|
2020-09-12 05:45:06 -04:00
|
|
|
|