Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
bec9b2b2
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看板
提交
bec9b2b2
编写于
9月 26, 2012
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MIPS: Move audit_arch() helper function to __syscall_get_arch().
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
c0ff3c53
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
13 deletion
+17
-13
arch/mips/include/asm/syscall.h
arch/mips/include/asm/syscall.h
+14
-0
arch/mips/kernel/ptrace.c
arch/mips/kernel/ptrace.c
+3
-13
未找到文件。
arch/mips/include/asm/syscall.h
浏览文件 @
bec9b2b2
...
...
@@ -13,6 +13,8 @@
#ifndef __ASM_MIPS_SYSCALL_H
#define __ASM_MIPS_SYSCALL_H
#include <linux/audit.h>
#include <linux/elf-em.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/uaccess.h>
...
...
@@ -80,4 +82,16 @@ extern const unsigned long sys_call_table[];
extern
const
unsigned
long
sys32_call_table
[];
extern
const
unsigned
long
sysn32_call_table
[];
static
inline
int
__syscall_get_arch
(
void
)
{
int
arch
=
EM_MIPS
;
#ifdef CONFIG_64BIT
arch
|=
__AUDIT_ARCH_64BIT
;
#endif
#if defined(__LITTLE_ENDIAN)
arch
|=
__AUDIT_ARCH_LE
;
#endif
return
arch
;
}
#endif
/* __ASM_MIPS_SYSCALL_H */
arch/mips/kernel/ptrace.c
浏览文件 @
bec9b2b2
...
...
@@ -38,6 +38,7 @@
#include <asm/mipsmtregs.h>
#include <asm/pgtable.h>
#include <asm/page.h>
#include <asm/syscall.h>
#include <asm/uaccess.h>
#include <asm/bootinfo.h>
#include <asm/reg.h>
...
...
@@ -647,18 +648,6 @@ long arch_ptrace(struct task_struct *child, long request,
return
ret
;
}
static
inline
int
audit_arch
(
void
)
{
int
arch
=
EM_MIPS
;
#ifdef CONFIG_64BIT
arch
|=
__AUDIT_ARCH_64BIT
;
#endif
#if defined(__LITTLE_ENDIAN)
arch
|=
__AUDIT_ARCH_LE
;
#endif
return
arch
;
}
/*
* Notification of system call entry/exit
* - triggered by current->work.syscall_trace
...
...
@@ -673,7 +662,8 @@ asmlinkage void syscall_trace_enter(struct pt_regs *regs)
if
(
test_thread_flag
(
TIF_SYSCALL_TRACE
))
ptrace_report_syscall
(
regs
);
audit_syscall_entry
(
audit_arch
(),
regs
->
regs
[
2
],
audit_syscall_entry
(
__syscall_get_arch
(),
regs
->
regs
[
2
],
regs
->
regs
[
4
],
regs
->
regs
[
5
],
regs
->
regs
[
6
],
regs
->
regs
[
7
]);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录