Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
f0e4de5c
Commit
f0e4de5c
authored
Apr 26, 2020
by
Al Viro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comedi: do_cmdtest_ioctl(): lift copyin/copyout into the caller
Signed-off-by:
Al Viro
<
viro@zeniv.linux.org.uk
>
parent
00035bee
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
23 deletions
+22
-23
drivers/staging/comedi/comedi_fops.c
drivers/staging/comedi/comedi_fops.c
+22
-23
No files found.
drivers/staging/comedi/comedi_fops.c
View file @
f0e4de5c
...
...
@@ -1856,49 +1856,39 @@ static int do_cmd_ioctl(struct comedi_device *dev,
* possibly modified comedi_cmd structure
*/
static
int
do_cmdtest_ioctl
(
struct
comedi_device
*
dev
,
struct
comedi_cmd
__user
*
arg
,
void
*
file
)
struct
comedi_cmd
*
cmd
,
bool
*
copy
,
void
*
file
)
{
struct
comedi_cmd
cmd
;
struct
comedi_subdevice
*
s
;
unsigned
int
__user
*
user_chanlist
;
int
ret
;
lockdep_assert_held
(
&
dev
->
mutex
);
if
(
copy_from_user
(
&
cmd
,
arg
,
sizeof
(
cmd
)))
{
dev_dbg
(
dev
->
class_dev
,
"bad cmd address
\n
"
);
return
-
EFAULT
;
}
/* get the user's cmd and do some simple validation */
ret
=
__comedi_get_user_cmd
(
dev
,
&
cmd
);
/* do some simple cmd validation */
ret
=
__comedi_get_user_cmd
(
dev
,
cmd
);
if
(
ret
)
return
ret
;
/* save user's chanlist pointer so it can be restored later */
user_chanlist
=
(
unsigned
int
__user
*
)
cmd
.
chanlist
;
user_chanlist
=
(
unsigned
int
__user
*
)
cmd
->
chanlist
;
s
=
&
dev
->
subdevices
[
cmd
.
subdev
];
s
=
&
dev
->
subdevices
[
cmd
->
subdev
];
/* user_chanlist can be NULL for COMEDI_CMDTEST ioctl */
if
(
user_chanlist
)
{
/* load channel/gain list */
ret
=
__comedi_get_user_chanlist
(
dev
,
s
,
user_chanlist
,
&
cmd
);
ret
=
__comedi_get_user_chanlist
(
dev
,
s
,
user_chanlist
,
cmd
);
if
(
ret
)
return
ret
;
}
ret
=
s
->
do_cmdtest
(
dev
,
s
,
&
cmd
);
ret
=
s
->
do_cmdtest
(
dev
,
s
,
cmd
);
kfree
(
cmd
.
chanlist
);
/* free kernel copy of user chanlist */
kfree
(
cmd
->
chanlist
);
/* free kernel copy of user chanlist */
/* restore chanlist pointer before copying back */
cmd
.
chanlist
=
(
unsigned
int
__force
*
)
user_chanlist
;
if
(
copy_to_user
(
arg
,
&
cmd
,
sizeof
(
cmd
)))
{
dev_dbg
(
dev
->
class_dev
,
"bad cmd address
\n
"
);
ret
=
-
EFAULT
;
}
cmd
->
chanlist
=
(
unsigned
int
__force
*
)
user_chanlist
;
*
copy
=
true
;
return
ret
;
}
...
...
@@ -2220,10 +2210,19 @@ static long comedi_unlocked_ioctl(struct file *file, unsigned int cmd,
case
COMEDI_CMD
:
rc
=
do_cmd_ioctl
(
dev
,
(
struct
comedi_cmd
__user
*
)
arg
,
file
);
break
;
case
COMEDI_CMDTEST
:
rc
=
do_cmdtest_ioctl
(
dev
,
(
struct
comedi_cmd
__user
*
)
arg
,
file
);
case
COMEDI_CMDTEST
:
{
struct
comedi_cmd
cmd
;
bool
copy
=
false
;
if
(
copy_from_user
(
&
cmd
,
(
void
__user
*
)
arg
,
sizeof
(
cmd
)))
{
rc
=
-
EFAULT
;
break
;
}
rc
=
do_cmdtest_ioctl
(
dev
,
&
cmd
,
&
copy
,
file
);
if
(
copy
&&
copy_to_user
((
void
__user
*
)
arg
,
&
cmd
,
sizeof
(
cmd
)))
rc
=
-
EFAULT
;
break
;
}
case
COMEDI_INSNLIST
:
{
struct
comedi_insnlist
insnlist
;
struct
comedi_insn
*
insns
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment