diff options
author | Joe Perches <joe@perches.com> | 2012-11-25 18:26:34 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-26 17:35:58 -0500 |
commit | 03f52a0a554210d5049eeed9f1bb29047dc807cb (patch) | |
tree | 8bbbc7f22f5a124f340676281ce0901c179e412f /net/ipv6 | |
parent | c91f6df2db4972d3cc983e6988b9abf1ad02f5f9 (diff) | |
download | linux-3.10-03f52a0a554210d5049eeed9f1bb29047dc807cb.tar.gz linux-3.10-03f52a0a554210d5049eeed9f1bb29047dc807cb.tar.bz2 linux-3.10-03f52a0a554210d5049eeed9f1bb29047dc807cb.zip |
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>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/ip6mr.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index 79bb49061ef..926ea544f49 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c @@ -1646,6 +1646,9 @@ int ip6_mroute_setsockopt(struct sock *sk, int optname, char __user *optval, uns case MRT6_ASSERT: { int v; + + if (optlen != sizeof(v)) + return -EINVAL; if (get_user(v, (int __user *)optval)) return -EFAULT; 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: { int v; + + if (optlen != sizeof(v)) + return -EINVAL; if (get_user(v, (int __user *)optval)) return -EFAULT; v = !!v; |