Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
4d3fb709
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4d3fb709
编写于
4月 30, 2013
作者:
E
Eric Paris
提交者:
Eric Paris
4月 30, 2013
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
helper for some session id stuff
上级
b122c376
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
14 addition
and
8 deletion
+14
-8
include/linux/audit.h
include/linux/audit.h
+2
-0
kernel/audit.c
kernel/audit.c
+12
-8
未找到文件。
include/linux/audit.h
浏览文件 @
4d3fb709
...
...
@@ -89,6 +89,8 @@ extern int audit_classify_arch(int arch);
struct
filename
;
extern
void
audit_log_session_info
(
struct
audit_buffer
*
ab
);
#ifdef CONFIG_AUDITSYSCALL
/* These are defined in auditsc.c */
/* Public API */
...
...
kernel/audit.c
浏览文件 @
4d3fb709
...
...
@@ -269,14 +269,12 @@ static int audit_log_config_change(char *function_name, int new, int old,
{
struct
audit_buffer
*
ab
;
int
rc
=
0
;
u32
sessionid
=
audit_get_sessionid
(
current
);
uid_t
auid
=
from_kuid
(
&
init_user_ns
,
audit_get_loginuid
(
current
));
ab
=
audit_log_start
(
NULL
,
GFP_KERNEL
,
AUDIT_CONFIG_CHANGE
);
if
(
unlikely
(
!
ab
))
return
rc
;
audit_log_format
(
ab
,
"%s=%d old=%d
auid=%u ses=%u"
,
function_name
,
new
,
old
,
auid
,
sessionid
);
audit_log_format
(
ab
,
"%s=%d old=%d
"
,
function_name
,
new
,
old
);
audit_log_session_info
(
ab
);
rc
=
audit_log_task_context
(
ab
);
if
(
rc
)
allow_changes
=
0
;
/* Something weird, deny request */
...
...
@@ -611,9 +609,7 @@ static int audit_netlink_ok(struct sk_buff *skb, u16 msg_type)
static
int
audit_log_common_recv_msg
(
struct
audit_buffer
**
ab
,
u16
msg_type
)
{
int
rc
=
0
;
u32
sessionid
=
audit_get_sessionid
(
current
);
uid_t
uid
=
from_kuid
(
&
init_user_ns
,
current_uid
());
uid_t
auid
=
from_kuid
(
&
init_user_ns
,
audit_get_loginuid
(
current
));
if
(
!
audit_enabled
)
{
*
ab
=
NULL
;
...
...
@@ -623,8 +619,8 @@ static int audit_log_common_recv_msg(struct audit_buffer **ab, u16 msg_type)
*
ab
=
audit_log_start
(
NULL
,
GFP_KERNEL
,
msg_type
);
if
(
unlikely
(
!*
ab
))
return
rc
;
audit_log_format
(
*
ab
,
"pid=%d uid=%u
auid=%u ses=%u"
,
task_tgid_vnr
(
current
),
uid
,
auid
,
sessionid
);
audit_log_format
(
*
ab
,
"pid=%d uid=%u
"
,
task_tgid_vnr
(
current
),
uid
);
audit_log_session_info
(
*
ab
);
audit_log_task_context
(
*
ab
);
return
rc
;
...
...
@@ -1376,6 +1372,14 @@ void audit_log_d_path(struct audit_buffer *ab, const char *prefix,
kfree
(
pathname
);
}
void
audit_log_session_info
(
struct
audit_buffer
*
ab
)
{
u32
sessionid
=
audit_get_sessionid
(
current
);
uid_t
auid
=
from_kuid
(
&
init_user_ns
,
audit_get_loginuid
(
current
));
audit_log_format
(
ab
,
"auid=%u ses=%u
\n
"
,
auid
,
sessionid
);
}
void
audit_log_key
(
struct
audit_buffer
*
ab
,
char
*
key
)
{
audit_log_format
(
ab
,
" key="
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录