Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
a3929484
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a3929484
编写于
5月 10, 2020
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
atm: move copyin from atm_getnames() into the caller
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
8c2348e3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
20 addition
and
20 deletion
+20
-20
net/atm/ioctl.c
net/atm/ioctl.c
+18
-1
net/atm/resources.c
net/atm/resources.c
+1
-18
net/atm/resources.h
net/atm/resources.h
+1
-1
未找到文件。
net/atm/ioctl.c
浏览文件 @
a3929484
...
...
@@ -56,6 +56,8 @@ static int do_vcc_ioctl(struct socket *sock, unsigned int cmd,
int
error
;
struct
list_head
*
pos
;
void
__user
*
argp
=
(
void
__user
*
)
arg
;
void
__user
*
buf
;
int
__user
*
len
;
vcc
=
ATM_SD
(
sock
);
switch
(
cmd
)
{
...
...
@@ -163,7 +165,22 @@ static int do_vcc_ioctl(struct socket *sock, unsigned int cmd,
goto
done
;
if
(
cmd
==
ATM_GETNAMES
)
{
error
=
atm_getnames
(
argp
,
compat
);
if
(
IS_ENABLED
(
CONFIG_COMPAT
)
&&
compat
)
{
#ifdef CONFIG_COMPAT
struct
compat_atm_iobuf
__user
*
ciobuf
=
argp
;
compat_uptr_t
cbuf
;
len
=
&
ciobuf
->
length
;
if
(
get_user
(
cbuf
,
&
ciobuf
->
buffer
))
return
-
EFAULT
;
buf
=
compat_ptr
(
cbuf
);
#endif
}
else
{
struct
atm_iobuf
__user
*
iobuf
=
argp
;
len
=
&
iobuf
->
length
;
if
(
get_user
(
buf
,
&
iobuf
->
buffer
))
return
-
EFAULT
;
}
error
=
atm_getnames
(
buf
,
len
);
}
else
{
error
=
atm_dev_ioctl
(
cmd
,
argp
,
compat
);
}
...
...
net/atm/resources.c
浏览文件 @
a3929484
...
...
@@ -193,30 +193,13 @@ static int fetch_stats(struct atm_dev *dev, struct atm_dev_stats __user *arg,
return
error
?
-
EFAULT
:
0
;
}
int
atm_getnames
(
void
__user
*
arg
,
int
compat
)
int
atm_getnames
(
void
__user
*
buf
,
int
__user
*
iobuf_len
)
{
void
__user
*
buf
;
int
error
,
len
,
size
=
0
;
struct
atm_dev
*
dev
;
struct
list_head
*
p
;
int
*
tmp_buf
,
*
tmp_p
;
int
__user
*
iobuf_len
;
if
(
IS_ENABLED
(
CONFIG_COMPAT
)
&&
compat
)
{
#ifdef CONFIG_COMPAT
struct
compat_atm_iobuf
__user
*
ciobuf
=
arg
;
compat_uptr_t
cbuf
;
iobuf_len
=
&
ciobuf
->
length
;
if
(
get_user
(
cbuf
,
&
ciobuf
->
buffer
))
return
-
EFAULT
;
buf
=
compat_ptr
(
cbuf
);
#endif
}
else
{
struct
atm_iobuf
__user
*
iobuf
=
arg
;
iobuf_len
=
&
iobuf
->
length
;
if
(
get_user
(
buf
,
&
iobuf
->
buffer
))
return
-
EFAULT
;
}
if
(
get_user
(
len
,
iobuf_len
))
return
-
EFAULT
;
mutex_lock
(
&
atm_dev_mutex
);
...
...
net/atm/resources.h
浏览文件 @
a3929484
...
...
@@ -14,7 +14,7 @@
extern
struct
list_head
atm_devs
;
extern
struct
mutex
atm_dev_mutex
;
int
atm_getnames
(
void
__user
*
arg
,
int
compat
);
int
atm_getnames
(
void
__user
*
buf
,
int
__user
*
iobuf_len
);
int
atm_dev_ioctl
(
unsigned
int
cmd
,
void
__user
*
arg
,
int
compat
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录