ip6mr: Add sizeof verification to MRT6_ASSERT and MT6_PIM
Verify the length of the user-space arguments. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c91f6df2db
commit
03f52a0a55
1 changed files with 6 additions and 0 deletions
|
@ -1646,6 +1646,9 @@ int ip6_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, uns
|
||||||
case MRT6_ASSERT:
|
case MRT6_ASSERT:
|
||||||
{
|
{
|
||||||
int v;
|
int v;
|
||||||
|
|
||||||
|
if (optlen != sizeof(v))
|
||||||
|
return -EINVAL;
|
||||||
if (get_user(v, (int __user *)optval))
|
if (get_user(v, (int __user *)optval))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
mrt->mroute_do_assert = v;
|
mrt->mroute_do_assert = v;
|
||||||
|
@ -1656,6 +1659,9 @@ int ip6_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, uns
|
||||||
case MRT6_PIM:
|
case MRT6_PIM:
|
||||||
{
|
{
|
||||||
int v;
|
int v;
|
||||||
|
|
||||||
|
if (optlen != sizeof(v))
|
||||||
|
return -EINVAL;
|
||||||
if (get_user(v, (int __user *)optval))
|
if (get_user(v, (int __user *)optval))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
v = !!v;
|
v = !!v;
|
||||||
|
|
Loading…
Add table
Reference in a new issue