Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e048e02c
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
提交
e048e02c
编写于
12月 16, 2008
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
make sure that filterkey of task,always rules is reported
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
e45aa212
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
4 deletion
+11
-4
kernel/auditsc.c
kernel/auditsc.c
+11
-4
未找到文件。
kernel/auditsc.c
浏览文件 @
e048e02c
...
...
@@ -652,7 +652,7 @@ static int audit_filter_rules(struct task_struct *tsk,
* completely disabled for this task. Since we only have the task
* structure at this point, we can only check uid and gid.
*/
static
enum
audit_state
audit_filter_task
(
struct
task_struct
*
tsk
)
static
enum
audit_state
audit_filter_task
(
struct
task_struct
*
tsk
,
char
**
key
)
{
struct
audit_entry
*
e
;
enum
audit_state
state
;
...
...
@@ -660,6 +660,8 @@ static enum audit_state audit_filter_task(struct task_struct *tsk)
rcu_read_lock
();
list_for_each_entry_rcu
(
e
,
&
audit_filter_list
[
AUDIT_FILTER_TASK
],
list
)
{
if
(
audit_filter_rules
(
tsk
,
&
e
->
rule
,
NULL
,
NULL
,
&
state
))
{
if
(
state
==
AUDIT_RECORD_CONTEXT
)
*
key
=
kstrdup
(
e
->
rule
.
filterkey
,
GFP_ATOMIC
);
rcu_read_unlock
();
return
state
;
}
...
...
@@ -866,18 +868,21 @@ int audit_alloc(struct task_struct *tsk)
{
struct
audit_context
*
context
;
enum
audit_state
state
;
char
*
key
=
NULL
;
if
(
likely
(
!
audit_ever_enabled
))
return
0
;
/* Return if not auditing. */
state
=
audit_filter_task
(
tsk
);
state
=
audit_filter_task
(
tsk
,
&
key
);
if
(
likely
(
state
==
AUDIT_DISABLED
))
return
0
;
if
(
!
(
context
=
audit_alloc_context
(
state
)))
{
kfree
(
key
);
audit_log_lost
(
"out of memory in audit_alloc"
);
return
-
ENOMEM
;
}
context
->
filterkey
=
key
;
tsk
->
audit_context
=
context
;
set_tsk_thread_flag
(
tsk
,
TIF_SYSCALL_AUDIT
);
...
...
@@ -1703,8 +1708,10 @@ void audit_syscall_exit(int valid, long return_code)
context
->
sockaddr_len
=
0
;
context
->
type
=
0
;
context
->
fds
[
0
]
=
-
1
;
kfree
(
context
->
filterkey
);
context
->
filterkey
=
NULL
;
if
(
context
->
state
!=
AUDIT_RECORD_CONTEXT
)
{
kfree
(
context
->
filterkey
);
context
->
filterkey
=
NULL
;
}
tsk
->
audit_context
=
context
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录