netdevsim: switch to memdup_user_nul()
[ Upstream commit 20fd4f421cf4c21ab37a8bf31db50c69f1b49355 ] Use memdup_user_nul() helper instead of open-coding to simplify the code. Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Reviewed-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net> Stable-dep-of: ee76746387f6 ("netdevsim: prevent bad user input in nsim_dev_health_break_write()") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ce3b97bfca
commit
dfe8c65162
1 changed files with 3 additions and 8 deletions
|
@ -235,15 +235,10 @@ static ssize_t nsim_dev_health_break_write(struct file *file,
|
|||
char *break_msg;
|
||||
int err;
|
||||
|
||||
break_msg = kmalloc(count + 1, GFP_KERNEL);
|
||||
if (!break_msg)
|
||||
return -ENOMEM;
|
||||
break_msg = memdup_user_nul(data, count);
|
||||
if (IS_ERR(break_msg))
|
||||
return PTR_ERR(break_msg);
|
||||
|
||||
if (copy_from_user(break_msg, data, count)) {
|
||||
err = -EFAULT;
|
||||
goto out;
|
||||
}
|
||||
break_msg[count] = '\0';
|
||||
if (break_msg[count - 1] == '\n')
|
||||
break_msg[count - 1] = '\0';
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue