diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-12-21 10:46:08 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-12-21 10:46:08 -0500 |
commit | cd6a22310ec2a70092e136d0cd65bb77c1502521 (patch) | |
tree | c01fa788b27b240c7b426d7f329d92bd58c7b8f5 /net/ipv6/ip6mr.c | |
parent | 1e12a521d6917004f8b95a3b5864b92edc2694c8 (diff) | |
parent | 177c459b08a34dcf004aa9a4c1f1d8be682ff3af (diff) |
Merge USB 4.20-rc8 mergepoint into usb-next
We need the USB changes in here for additional patches to be able to
apply cleanly.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/ipv6/ip6mr.c')
-rw-r--r-- | net/ipv6/ip6mr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/ipv6/ip6mr.c b/net/ipv6/ip6mr.c index e2ea691e42c6..377a2ee5d9ad 100644 --- a/net/ipv6/ip6mr.c +++ b/net/ipv6/ip6mr.c | |||
@@ -52,6 +52,8 @@ | |||
52 | #include <net/ip6_checksum.h> | 52 | #include <net/ip6_checksum.h> |
53 | #include <linux/netconf.h> | 53 | #include <linux/netconf.h> |
54 | 54 | ||
55 | #include <linux/nospec.h> | ||
56 | |||
55 | struct ip6mr_rule { | 57 | struct ip6mr_rule { |
56 | struct fib_rule common; | 58 | struct fib_rule common; |
57 | }; | 59 | }; |
@@ -1841,6 +1843,7 @@ int ip6mr_ioctl(struct sock *sk, int cmd, void __user *arg) | |||
1841 | return -EFAULT; | 1843 | return -EFAULT; |
1842 | if (vr.mifi >= mrt->maxvif) | 1844 | if (vr.mifi >= mrt->maxvif) |
1843 | return -EINVAL; | 1845 | return -EINVAL; |
1846 | vr.mifi = array_index_nospec(vr.mifi, mrt->maxvif); | ||
1844 | read_lock(&mrt_lock); | 1847 | read_lock(&mrt_lock); |
1845 | vif = &mrt->vif_table[vr.mifi]; | 1848 | vif = &mrt->vif_table[vr.mifi]; |
1846 | if (VIF_EXISTS(mrt, vr.mifi)) { | 1849 | if (VIF_EXISTS(mrt, vr.mifi)) { |
@@ -1915,6 +1918,7 @@ int ip6mr_compat_ioctl(struct sock *sk, unsigned int cmd, void __user *arg) | |||
1915 | return -EFAULT; | 1918 | return -EFAULT; |
1916 | if (vr.mifi >= mrt->maxvif) | 1919 | if (vr.mifi >= mrt->maxvif) |
1917 | return -EINVAL; | 1920 | return -EINVAL; |
1921 | vr.mifi = array_index_nospec(vr.mifi, mrt->maxvif); | ||
1918 | read_lock(&mrt_lock); | 1922 | read_lock(&mrt_lock); |
1919 | vif = &mrt->vif_table[vr.mifi]; | 1923 | vif = &mrt->vif_table[vr.mifi]; |
1920 | if (VIF_EXISTS(mrt, vr.mifi)) { | 1924 | if (VIF_EXISTS(mrt, vr.mifi)) { |