2021-11-16 12:10:06 +08:00
|
|
|
From 3d3cb8c0b294a60faaeb68e0d7361babdc1b8902 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
|
2021-11-16 12:10:06 +08:00
|
|
|
Subject: [PATCH 08/24] 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
|
2021-11-16 12:10:06 +08:00
|
|
|
index ad3a079..c85e05a 100755
|
2020-02-27 17:15:29 -05:00
|
|
|
--- a/kpatch-build/kpatch-build
|
|
|
|
|
+++ b/kpatch-build/kpatch-build
|
2021-11-16 12:10:06 +08:00
|
|
|
@@ -1176,6 +1176,11 @@ export KCFLAGS="-I$DATADIR/patch $ARCH_KCFLAGS"
|
|
|
|
|
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
|
|
|
--
|
2021-11-16 12:10:06 +08:00
|
|
|
2.23.0
|
2020-09-12 05:45:06 -04:00
|
|
|
|