Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bcf5d545
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
161
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
bcf5d545
编写于
4月 13, 2015
作者:
J
Jiri Kosina
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-4.1/core-noarch' into for-linus
上级
8cb2c2dc
2e3ac940
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
23 addition
and
58 deletion
+23
-58
arch/x86/include/asm/livepatch.h
arch/x86/include/asm/livepatch.h
+2
-2
include/linux/livepatch.h
include/linux/livepatch.h
+4
-4
kernel/livepatch/core.c
kernel/livepatch/core.c
+17
-52
未找到文件。
arch/x86/include/asm/livepatch.h
浏览文件 @
bcf5d545
...
...
@@ -32,8 +32,8 @@ static inline int klp_check_compiler_support(void)
#endif
return
0
;
}
extern
int
klp_write_module_reloc
(
struct
module
*
mod
,
unsigned
long
type
,
unsigned
long
loc
,
unsigned
long
value
);
int
klp_write_module_reloc
(
struct
module
*
mod
,
unsigned
long
type
,
unsigned
long
loc
,
unsigned
long
value
);
static
inline
void
klp_arch_set_pc
(
struct
pt_regs
*
regs
,
unsigned
long
ip
)
{
...
...
include/linux/livepatch.h
浏览文件 @
bcf5d545
...
...
@@ -123,10 +123,10 @@ struct klp_patch {
enum
klp_state
state
;
};
extern
int
klp_register_patch
(
struct
klp_patch
*
);
extern
int
klp_unregister_patch
(
struct
klp_patch
*
);
extern
int
klp_enable_patch
(
struct
klp_patch
*
);
extern
int
klp_disable_patch
(
struct
klp_patch
*
);
int
klp_register_patch
(
struct
klp_patch
*
);
int
klp_unregister_patch
(
struct
klp_patch
*
);
int
klp_enable_patch
(
struct
klp_patch
*
);
int
klp_disable_patch
(
struct
klp_patch
*
);
#endif
/* CONFIG_LIVEPATCH */
...
...
kernel/livepatch/core.c
浏览文件 @
bcf5d545
...
...
@@ -335,32 +335,20 @@ static void notrace klp_ftrace_handler(unsigned long ip,
rcu_read_unlock
();
}
static
int
klp_disable_func
(
struct
klp_func
*
func
)
static
void
klp_disable_func
(
struct
klp_func
*
func
)
{
struct
klp_ops
*
ops
;
int
ret
;
if
(
WARN_ON
(
func
->
state
!=
KLP_ENABLED
))
return
-
EINVAL
;
if
(
WARN_ON
(
!
func
->
old_addr
))
return
-
EINVAL
;
WARN_ON
(
func
->
state
!=
KLP_ENABLED
);
WARN_ON
(
!
func
->
old_addr
)
;
ops
=
klp_find_ops
(
func
->
old_addr
);
if
(
WARN_ON
(
!
ops
))
return
-
EINVAL
;
return
;
if
(
list_is_singular
(
&
ops
->
func_stack
))
{
ret
=
unregister_ftrace_function
(
&
ops
->
fops
);
if
(
ret
)
{
pr_err
(
"failed to unregister ftrace handler for function '%s' (%d)
\n
"
,
func
->
old_name
,
ret
);
return
ret
;
}
ret
=
ftrace_set_filter_ip
(
&
ops
->
fops
,
func
->
old_addr
,
1
,
0
);
if
(
ret
)
pr_warn
(
"function unregister succeeded but failed to clear the filter
\n
"
);
WARN_ON
(
unregister_ftrace_function
(
&
ops
->
fops
));
WARN_ON
(
ftrace_set_filter_ip
(
&
ops
->
fops
,
func
->
old_addr
,
1
,
0
));
list_del_rcu
(
&
func
->
stack_node
);
list_del
(
&
ops
->
node
);
...
...
@@ -370,8 +358,6 @@ static int klp_disable_func(struct klp_func *func)
}
func
->
state
=
KLP_DISABLED
;
return
0
;
}
static
int
klp_enable_func
(
struct
klp_func
*
func
)
...
...
@@ -432,23 +418,15 @@ static int klp_enable_func(struct klp_func *func)
return
ret
;
}
static
int
klp_disable_object
(
struct
klp_object
*
obj
)
static
void
klp_disable_object
(
struct
klp_object
*
obj
)
{
struct
klp_func
*
func
;
int
ret
;
for
(
func
=
obj
->
funcs
;
func
->
old_name
;
func
++
)
{
if
(
func
->
state
!=
KLP_ENABLED
)
continue
;
ret
=
klp_disable_func
(
func
);
if
(
ret
)
return
ret
;
}
for
(
func
=
obj
->
funcs
;
func
->
old_name
;
func
++
)
if
(
func
->
state
==
KLP_ENABLED
)
klp_disable_func
(
func
);
obj
->
state
=
KLP_DISABLED
;
return
0
;
}
static
int
klp_enable_object
(
struct
klp_object
*
obj
)
...
...
@@ -464,22 +442,19 @@ static int klp_enable_object(struct klp_object *obj)
for
(
func
=
obj
->
funcs
;
func
->
old_name
;
func
++
)
{
ret
=
klp_enable_func
(
func
);
if
(
ret
)
goto
unregister
;
if
(
ret
)
{
klp_disable_object
(
obj
);
return
ret
;
}
}
obj
->
state
=
KLP_ENABLED
;
return
0
;
unregister:
WARN_ON
(
klp_disable_object
(
obj
));
return
ret
;
}
static
int
__klp_disable_patch
(
struct
klp_patch
*
patch
)
{
struct
klp_object
*
obj
;
int
ret
;
/* enforce stacking: only the last enabled patch can be disabled */
if
(
!
list_is_last
(
&
patch
->
list
,
&
klp_patches
)
&&
...
...
@@ -489,12 +464,8 @@ static int __klp_disable_patch(struct klp_patch *patch)
pr_notice
(
"disabling patch '%s'
\n
"
,
patch
->
mod
->
name
);
for
(
obj
=
patch
->
objs
;
obj
->
funcs
;
obj
++
)
{
if
(
obj
->
state
!=
KLP_ENABLED
)
continue
;
ret
=
klp_disable_object
(
obj
);
if
(
ret
)
return
ret
;
if
(
obj
->
state
==
KLP_ENABLED
)
klp_disable_object
(
obj
);
}
patch
->
state
=
KLP_DISABLED
;
...
...
@@ -553,8 +524,6 @@ static int __klp_enable_patch(struct klp_patch *patch)
pr_notice
(
"enabling patch '%s'
\n
"
,
patch
->
mod
->
name
);
for
(
obj
=
patch
->
objs
;
obj
->
funcs
;
obj
++
)
{
klp_find_object_module
(
obj
);
if
(
!
klp_is_object_loaded
(
obj
))
continue
;
...
...
@@ -945,7 +914,6 @@ static void klp_module_notify_going(struct klp_patch *patch,
{
struct
module
*
pmod
=
patch
->
mod
;
struct
module
*
mod
=
obj
->
mod
;
int
ret
;
if
(
patch
->
state
==
KLP_DISABLED
)
goto
disabled
;
...
...
@@ -953,10 +921,7 @@ static void klp_module_notify_going(struct klp_patch *patch,
pr_notice
(
"reverting patch '%s' on unloading module '%s'
\n
"
,
pmod
->
name
,
mod
->
name
);
ret
=
klp_disable_object
(
obj
);
if
(
ret
)
pr_warn
(
"failed to revert patch '%s' on module '%s' (%d)
\n
"
,
pmod
->
name
,
mod
->
name
,
ret
);
klp_disable_object
(
obj
);
disabled:
klp_free_object_loaded
(
obj
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录