Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
77654350
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看板
提交
77654350
编写于
9月 12, 2018
作者:
A
Al Viro
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
take compat TIOC[SG]SERIAL treatment into tty_compat_ioctl()
Signed-off-by:
N
Al Viro
<
viro@zeniv.linux.org.uk
>
上级
f82fc0fe
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
81 addition
and
67 deletion
+81
-67
drivers/tty/tty_io.c
drivers/tty/tty_io.c
+81
-0
fs/compat_ioctl.c
fs/compat_ioctl.c
+0
-67
未找到文件。
drivers/tty/tty_io.c
浏览文件 @
77654350
...
...
@@ -2651,6 +2651,81 @@ long tty_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
}
#ifdef CONFIG_COMPAT
struct
serial_struct32
{
compat_int_t
type
;
compat_int_t
line
;
compat_uint_t
port
;
compat_int_t
irq
;
compat_int_t
flags
;
compat_int_t
xmit_fifo_size
;
compat_int_t
custom_divisor
;
compat_int_t
baud_base
;
unsigned
short
close_delay
;
char
io_type
;
char
reserved_char
[
1
];
compat_int_t
hub6
;
unsigned
short
closing_wait
;
/* time to wait before closing */
unsigned
short
closing_wait2
;
/* no longer used... */
compat_uint_t
iomem_base
;
unsigned
short
iomem_reg_shift
;
unsigned
int
port_high
;
/* compat_ulong_t iomap_base FIXME */
compat_int_t
reserved
[
1
];
};
static
int
compat_tty_tiocsserial
(
struct
tty_struct
*
tty
,
struct
serial_struct32
__user
*
ss
)
{
static
DEFINE_RATELIMIT_STATE
(
depr_flags
,
DEFAULT_RATELIMIT_INTERVAL
,
DEFAULT_RATELIMIT_BURST
);
char
comm
[
TASK_COMM_LEN
];
struct
serial_struct32
v32
;
struct
serial_struct
v
;
int
flags
;
if
(
copy_from_user
(
&
v32
,
ss
,
sizeof
(
struct
serial_struct32
)))
return
-
EFAULT
;
memcpy
(
&
v
,
&
v32
,
offsetof
(
struct
serial_struct32
,
iomem_base
));
v
.
iomem_base
=
compat_ptr
(
v32
.
iomem_base
);
v
.
iomem_reg_shift
=
v32
.
iomem_reg_shift
;
v
.
port_high
=
v32
.
port_high
;
v
.
iomap_base
=
0
;
flags
=
v
.
flags
&
ASYNC_DEPRECATED
;
if
(
flags
&&
__ratelimit
(
&
depr_flags
))
pr_warn
(
"%s: '%s' is using deprecated serial flags (with no effect): %.8x
\n
"
,
__func__
,
get_task_comm
(
comm
,
current
),
flags
);
if
(
!
tty
->
ops
->
set_serial
)
return
-
ENOTTY
;
return
tty
->
ops
->
set_serial
(
tty
,
&
v
);
}
static
int
compat_tty_tiocgserial
(
struct
tty_struct
*
tty
,
struct
serial_struct32
__user
*
ss
)
{
struct
serial_struct32
v32
;
struct
serial_struct
v
;
int
err
;
memset
(
&
v
,
0
,
sizeof
(
struct
serial_struct
));
if
(
!
tty
->
ops
->
set_serial
)
return
-
ENOTTY
;
err
=
tty
->
ops
->
get_serial
(
tty
,
&
v
);
if
(
!
err
)
{
memcpy
(
&
v32
,
&
v
,
offsetof
(
struct
serial_struct32
,
iomem_base
));
v32
.
iomem_base
=
(
unsigned
long
)
v
.
iomem_base
>>
32
?
0xfffffff
:
ptr_to_compat
(
v
.
iomem_base
);
v32
.
iomem_reg_shift
=
v
.
iomem_reg_shift
;
v32
.
port_high
=
v
.
port_high
;
if
(
copy_to_user
(
ss
,
&
v32
,
sizeof
(
struct
serial_struct32
)))
err
=
-
EFAULT
;
}
return
err
;
}
static
long
tty_compat_ioctl
(
struct
file
*
file
,
unsigned
int
cmd
,
unsigned
long
arg
)
{
...
...
@@ -2736,6 +2811,12 @@ static long tty_compat_ioctl(struct file *file, unsigned int cmd,
if
(
tty_paranoia_check
(
tty
,
file_inode
(
file
),
"tty_ioctl"
))
return
-
EINVAL
;
switch
(
cmd
)
{
case
TIOCSSERIAL
:
return
compat_tty_tiocsserial
(
tty
,
compat_ptr
(
arg
));
case
TIOCGSERIAL
:
return
compat_tty_tiocgserial
(
tty
,
compat_ptr
(
arg
));
}
if
(
tty
->
ops
->
compat_ioctl
)
{
retval
=
tty
->
ops
->
compat_ioctl
(
tty
,
cmd
,
arg
);
if
(
retval
!=
-
ENOIOCTLCMD
)
...
...
fs/compat_ioctl.c
浏览文件 @
77654350
...
...
@@ -560,69 +560,6 @@ static int mt_ioctl_trans(struct file *file,
#define HIDPGETCONNLIST _IOR('H', 210, int)
#define HIDPGETCONNINFO _IOR('H', 211, int)
struct
serial_struct32
{
compat_int_t
type
;
compat_int_t
line
;
compat_uint_t
port
;
compat_int_t
irq
;
compat_int_t
flags
;
compat_int_t
xmit_fifo_size
;
compat_int_t
custom_divisor
;
compat_int_t
baud_base
;
unsigned
short
close_delay
;
char
io_type
;
char
reserved_char
[
1
];
compat_int_t
hub6
;
unsigned
short
closing_wait
;
/* time to wait before closing */
unsigned
short
closing_wait2
;
/* no longer used... */
compat_uint_t
iomem_base
;
unsigned
short
iomem_reg_shift
;
unsigned
int
port_high
;
/* compat_ulong_t iomap_base FIXME */
compat_int_t
reserved
[
1
];
};
static
int
serial_struct_ioctl
(
struct
file
*
file
,
unsigned
cmd
,
struct
serial_struct32
__user
*
ss32
)
{
typedef
struct
serial_struct32
SS32
;
int
err
;
struct
serial_struct
__user
*
ss
=
compat_alloc_user_space
(
sizeof
(
*
ss
));
__u32
udata
;
unsigned
int
base
;
unsigned
char
*
iomem_base
;
if
(
ss
==
NULL
)
return
-
EFAULT
;
if
(
cmd
==
TIOCSSERIAL
)
{
if
(
copy_in_user
(
ss
,
ss32
,
offsetof
(
SS32
,
iomem_base
))
||
get_user
(
udata
,
&
ss32
->
iomem_base
))
return
-
EFAULT
;
iomem_base
=
compat_ptr
(
udata
);
if
(
put_user
(
iomem_base
,
&
ss
->
iomem_base
)
||
convert_in_user
(
&
ss32
->
iomem_reg_shift
,
&
ss
->
iomem_reg_shift
)
||
convert_in_user
(
&
ss32
->
port_high
,
&
ss
->
port_high
)
||
put_user
(
0UL
,
&
ss
->
iomap_base
))
return
-
EFAULT
;
}
err
=
do_ioctl
(
file
,
cmd
,
(
unsigned
long
)
ss
);
if
(
cmd
==
TIOCGSERIAL
&&
err
>=
0
)
{
if
(
copy_in_user
(
ss32
,
ss
,
offsetof
(
SS32
,
iomem_base
))
||
get_user
(
iomem_base
,
&
ss
->
iomem_base
))
return
-
EFAULT
;
base
=
(
unsigned
long
)
iomem_base
>>
32
?
0xffffffff
:
(
unsigned
)(
unsigned
long
)
iomem_base
;
if
(
put_user
(
base
,
&
ss32
->
iomem_base
)
||
convert_in_user
(
&
ss
->
iomem_reg_shift
,
&
ss32
->
iomem_reg_shift
)
||
convert_in_user
(
&
ss
->
port_high
,
&
ss32
->
port_high
))
return
-
EFAULT
;
}
return
err
;
}
#define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t)
#define RTC_IRQP_SET32 _IOW('p', 0x0c, compat_ulong_t)
#define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t)
...
...
@@ -1242,10 +1179,6 @@ static long do_ioctl_trans(unsigned int cmd,
case
MTIOCPOS32
:
return
mt_ioctl_trans
(
file
,
cmd
,
argp
);
#endif
/* Serial */
case
TIOCGSERIAL
:
case
TIOCSSERIAL
:
return
serial_struct_ioctl
(
file
,
cmd
,
argp
);
/* Not implemented in the native kernel */
case
RTC_IRQP_READ32
:
case
RTC_IRQP_SET32
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录