Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
471a5c7c
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
471a5c7c
编写于
7月 10, 2006
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[PATCH] introduce audit rules counter
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
5422e01a
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
29 addition
and
0 deletion
+29
-0
include/linux/audit.h
include/linux/audit.h
+2
-0
kernel/auditfilter.c
kernel/auditfilter.c
+24
-0
kernel/auditsc.c
kernel/auditsc.c
+3
-0
未找到文件。
include/linux/audit.h
浏览文件 @
471a5c7c
...
...
@@ -410,6 +410,7 @@ static inline int audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
return
__audit_mq_getsetattr
(
mqdes
,
mqstat
);
return
0
;
}
extern
int
audit_n_rules
;
#else
#define audit_alloc(t) ({ 0; })
#define audit_free(t) do { ; } while (0)
...
...
@@ -437,6 +438,7 @@ static inline int audit_mq_getsetattr(mqd_t mqdes, struct mq_attr *mqstat)
#define audit_mq_timedreceive(d,l,p,t) ({ 0; })
#define audit_mq_notify(d,n) ({ 0; })
#define audit_mq_getsetattr(d,s) ({ 0; })
#define audit_n_rules 0
#endif
#ifdef CONFIG_AUDIT
...
...
kernel/auditfilter.c
浏览文件 @
471a5c7c
...
...
@@ -1136,6 +1136,14 @@ static inline int audit_add_rule(struct audit_entry *entry,
struct
audit_watch
*
watch
=
entry
->
rule
.
watch
;
struct
nameidata
*
ndp
,
*
ndw
;
int
h
,
err
,
putnd_needed
=
0
;
#ifdef CONFIG_AUDITSYSCALL
int
dont_count
=
0
;
/* If either of these, don't count towards total */
if
(
entry
->
rule
.
listnr
==
AUDIT_FILTER_USER
||
entry
->
rule
.
listnr
==
AUDIT_FILTER_TYPE
)
dont_count
=
1
;
#endif
if
(
inode_f
)
{
h
=
audit_hash_ino
(
inode_f
->
val
);
...
...
@@ -1176,6 +1184,10 @@ static inline int audit_add_rule(struct audit_entry *entry,
}
else
{
list_add_tail_rcu
(
&
entry
->
list
,
list
);
}
#ifdef CONFIG_AUDITSYSCALL
if
(
!
dont_count
)
audit_n_rules
++
;
#endif
mutex_unlock
(
&
audit_filter_mutex
);
if
(
putnd_needed
)
...
...
@@ -1200,6 +1212,14 @@ static inline int audit_del_rule(struct audit_entry *entry,
struct
audit_watch
*
watch
,
*
tmp_watch
=
entry
->
rule
.
watch
;
LIST_HEAD
(
inotify_list
);
int
h
,
ret
=
0
;
#ifdef CONFIG_AUDITSYSCALL
int
dont_count
=
0
;
/* If either of these, don't count towards total */
if
(
entry
->
rule
.
listnr
==
AUDIT_FILTER_USER
||
entry
->
rule
.
listnr
==
AUDIT_FILTER_TYPE
)
dont_count
=
1
;
#endif
if
(
inode_f
)
{
h
=
audit_hash_ino
(
inode_f
->
val
);
...
...
@@ -1237,6 +1257,10 @@ static inline int audit_del_rule(struct audit_entry *entry,
list_del_rcu
(
&
e
->
list
);
call_rcu
(
&
e
->
rcu
,
audit_free_rule_rcu
);
#ifdef CONFIG_AUDITSYSCALL
if
(
!
dont_count
)
audit_n_rules
--
;
#endif
mutex_unlock
(
&
audit_filter_mutex
);
if
(
!
list_empty
(
&
inotify_list
))
...
...
kernel/auditsc.c
浏览文件 @
471a5c7c
...
...
@@ -85,6 +85,9 @@ extern int audit_enabled;
/* Indicates that audit should log the full pathname. */
#define AUDIT_NAME_FULL -1
/* number of audit rules */
int
audit_n_rules
;
/* When fs/namei.c:getname() is called, we store the pointer in name and
* we don't let putname() free it (instead we free all of the saved
* pointers at syscall exit time).
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录