Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
0a73dccc
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
0a73dccc
编写于
6月 05, 2006
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] validate rule fields' types
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
f368c07d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
48 addition
and
9 deletion
+48
-9
kernel/auditfilter.c
kernel/auditfilter.c
+48
-9
未找到文件。
kernel/auditfilter.c
浏览文件 @
0a73dccc
...
...
@@ -348,17 +348,31 @@ static struct audit_entry *audit_rule_to_entry(struct audit_rule *rule)
f
->
val
=
rule
->
values
[
i
];
err
=
-
EINVAL
;
if
(
f
->
type
&
AUDIT_UNUSED_BITS
)
goto
exit_free
;
switch
(
f
->
type
)
{
case
AUDIT_SE_USER
:
case
AUDIT_SE_ROLE
:
case
AUDIT_SE_TYPE
:
case
AUDIT_SE_SEN
:
case
AUDIT_SE_CLR
:
case
AUDIT_WATCH
:
default:
goto
exit_free
;
case
AUDIT_PID
:
case
AUDIT_UID
:
case
AUDIT_EUID
:
case
AUDIT_SUID
:
case
AUDIT_FSUID
:
case
AUDIT_GID
:
case
AUDIT_EGID
:
case
AUDIT_SGID
:
case
AUDIT_FSGID
:
case
AUDIT_LOGINUID
:
case
AUDIT_PERS
:
case
AUDIT_ARCH
:
case
AUDIT_MSGTYPE
:
case
AUDIT_DEVMAJOR
:
case
AUDIT_DEVMINOR
:
case
AUDIT_EXIT
:
case
AUDIT_SUCCESS
:
case
AUDIT_ARG0
:
case
AUDIT_ARG1
:
case
AUDIT_ARG2
:
case
AUDIT_ARG3
:
break
;
case
AUDIT_INODE
:
err
=
audit_to_inode
(
&
entry
->
rule
,
f
);
if
(
err
)
...
...
@@ -432,6 +446,29 @@ static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
f
->
se_str
=
NULL
;
f
->
se_rule
=
NULL
;
switch
(
f
->
type
)
{
case
AUDIT_PID
:
case
AUDIT_UID
:
case
AUDIT_EUID
:
case
AUDIT_SUID
:
case
AUDIT_FSUID
:
case
AUDIT_GID
:
case
AUDIT_EGID
:
case
AUDIT_SGID
:
case
AUDIT_FSGID
:
case
AUDIT_LOGINUID
:
case
AUDIT_PERS
:
case
AUDIT_ARCH
:
case
AUDIT_MSGTYPE
:
case
AUDIT_PPID
:
case
AUDIT_DEVMAJOR
:
case
AUDIT_DEVMINOR
:
case
AUDIT_EXIT
:
case
AUDIT_SUCCESS
:
case
AUDIT_ARG0
:
case
AUDIT_ARG1
:
case
AUDIT_ARG2
:
case
AUDIT_ARG3
:
break
;
case
AUDIT_SE_USER
:
case
AUDIT_SE_ROLE
:
case
AUDIT_SE_TYPE
:
...
...
@@ -474,6 +511,8 @@ static struct audit_entry *audit_data_to_entry(struct audit_rule_data *data,
if
(
err
)
goto
exit_free
;
break
;
default:
goto
exit_free
;
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录