Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
c5317167
cloud-kernel
项目概览
openanolis
/
cloud-kernel
接近 2 年 前同步成功
通知
169
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看板
提交
c5317167
编写于
10月 05, 2016
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
proc: switch auxv to use of __mem_open()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
91fff9b3
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
26 addition
and
19 deletion
+26
-19
fs/proc/base.c
fs/proc/base.c
+26
-19
未找到文件。
fs/proc/base.c
浏览文件 @
c5317167
...
@@ -400,23 +400,6 @@ static const struct file_operations proc_pid_cmdline_ops = {
...
@@ -400,23 +400,6 @@ static const struct file_operations proc_pid_cmdline_ops = {
.
llseek
=
generic_file_llseek
,
.
llseek
=
generic_file_llseek
,
};
};
static
int
proc_pid_auxv
(
struct
seq_file
*
m
,
struct
pid_namespace
*
ns
,
struct
pid
*
pid
,
struct
task_struct
*
task
)
{
struct
mm_struct
*
mm
=
mm_access
(
task
,
PTRACE_MODE_READ_FSCREDS
);
if
(
mm
&&
!
IS_ERR
(
mm
))
{
unsigned
int
nwords
=
0
;
do
{
nwords
+=
2
;
}
while
(
mm
->
saved_auxv
[
nwords
-
2
]
!=
0
);
/* AT_NULL */
seq_write
(
m
,
mm
->
saved_auxv
,
nwords
*
sizeof
(
mm
->
saved_auxv
[
0
]));
mmput
(
mm
);
return
0
;
}
else
return
PTR_ERR
(
mm
);
}
#ifdef CONFIG_KALLSYMS
#ifdef CONFIG_KALLSYMS
/*
/*
* Provides a wchan file via kallsyms in a proper one-value-per-file format.
* Provides a wchan file via kallsyms in a proper one-value-per-file format.
...
@@ -1014,6 +997,30 @@ static const struct file_operations proc_environ_operations = {
...
@@ -1014,6 +997,30 @@ static const struct file_operations proc_environ_operations = {
.
release
=
mem_release
,
.
release
=
mem_release
,
};
};
static
int
auxv_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
__mem_open
(
inode
,
file
,
PTRACE_MODE_READ_FSCREDS
);
}
static
ssize_t
auxv_read
(
struct
file
*
file
,
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
{
struct
mm_struct
*
mm
=
file
->
private_data
;
unsigned
int
nwords
=
0
;
do
{
nwords
+=
2
;
}
while
(
mm
->
saved_auxv
[
nwords
-
2
]
!=
0
);
/* AT_NULL */
return
simple_read_from_buffer
(
buf
,
count
,
ppos
,
mm
->
saved_auxv
,
nwords
*
sizeof
(
mm
->
saved_auxv
[
0
]));
}
static
const
struct
file_operations
proc_auxv_operations
=
{
.
open
=
auxv_open
,
.
read
=
auxv_read
,
.
llseek
=
generic_file_llseek
,
.
release
=
mem_release
,
};
static
ssize_t
oom_adj_read
(
struct
file
*
file
,
char
__user
*
buf
,
size_t
count
,
static
ssize_t
oom_adj_read
(
struct
file
*
file
,
char
__user
*
buf
,
size_t
count
,
loff_t
*
ppos
)
loff_t
*
ppos
)
{
{
...
@@ -2822,7 +2829,7 @@ static const struct pid_entry tgid_base_stuff[] = {
...
@@ -2822,7 +2829,7 @@ static const struct pid_entry tgid_base_stuff[] = {
DIR
(
"net"
,
S_IRUGO
|
S_IXUGO
,
proc_net_inode_operations
,
proc_net_operations
),
DIR
(
"net"
,
S_IRUGO
|
S_IXUGO
,
proc_net_inode_operations
,
proc_net_operations
),
#endif
#endif
REG
(
"environ"
,
S_IRUSR
,
proc_environ_operations
),
REG
(
"environ"
,
S_IRUSR
,
proc_environ_operations
),
ONE
(
"auxv"
,
S_IRUSR
,
proc_pid_auxv
),
REG
(
"auxv"
,
S_IRUSR
,
proc_auxv_operations
),
ONE
(
"status"
,
S_IRUGO
,
proc_pid_status
),
ONE
(
"status"
,
S_IRUGO
,
proc_pid_status
),
ONE
(
"personality"
,
S_IRUSR
,
proc_pid_personality
),
ONE
(
"personality"
,
S_IRUSR
,
proc_pid_personality
),
ONE
(
"limits"
,
S_IRUGO
,
proc_pid_limits
),
ONE
(
"limits"
,
S_IRUGO
,
proc_pid_limits
),
...
@@ -3210,7 +3217,7 @@ static const struct pid_entry tid_base_stuff[] = {
...
@@ -3210,7 +3217,7 @@ static const struct pid_entry tid_base_stuff[] = {
DIR
(
"net"
,
S_IRUGO
|
S_IXUGO
,
proc_net_inode_operations
,
proc_net_operations
),
DIR
(
"net"
,
S_IRUGO
|
S_IXUGO
,
proc_net_inode_operations
,
proc_net_operations
),
#endif
#endif
REG
(
"environ"
,
S_IRUSR
,
proc_environ_operations
),
REG
(
"environ"
,
S_IRUSR
,
proc_environ_operations
),
ONE
(
"auxv"
,
S_IRUSR
,
proc_pid_auxv
),
REG
(
"auxv"
,
S_IRUSR
,
proc_auxv_operations
),
ONE
(
"status"
,
S_IRUGO
,
proc_pid_status
),
ONE
(
"status"
,
S_IRUGO
,
proc_pid_status
),
ONE
(
"personality"
,
S_IRUSR
,
proc_pid_personality
),
ONE
(
"personality"
,
S_IRUSR
,
proc_pid_personality
),
ONE
(
"limits"
,
S_IRUGO
,
proc_pid_limits
),
ONE
(
"limits"
,
S_IRUGO
,
proc_pid_limits
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录