android_kernel_oneplus_msm8998/net
Zhiqiang Liu 9467d98f6d net: fix IPv6 prefix route residue
[ Upstream commit e75913c93f7cd5f338ab373c34c93a655bd309cb ]

Follow those steps:
 # ip addr add 2001:123::1/32 dev eth0
 # ip addr add 2001:123:456::2/64 dev eth0
 # ip addr del 2001:123::1/32 dev eth0
 # ip addr del 2001:123:456::2/64 dev eth0
and then prefix route of 2001:123::1/32 will still exist.

This is because ipv6_prefix_equal in check_cleanup_prefix_route
func does not check whether two IPv6 addresses have the same
prefix length. If the prefix of one address starts with another
shorter address prefix, even though their prefix lengths are
different, the return value of ipv6_prefix_equal is true.

Here I add a check of whether two addresses have the same prefix
to decide whether their prefixes are equal.

Fixes: 5b84efecb7 ("ipv6 addrconf: don't cleanup prefix route for IFA_F_NOPREFIXROUTE")
Signed-off-by: Zhiqiang Liu <liuzhiqiang26@huawei.com>
Reported-by: Wenhao Zhang <zhangwenhao8@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2019-02-23 09:05:13 +01:00
..
6lowpan
9p 9p/net: put a lower bound on msize 2019-01-13 10:05:33 +01:00
802
8021q
appletalk
atm
ax25 ax25: fix a use-after-free in ax25_fillin_cb() 2019-01-13 10:05:27 +01:00
batman-adv batman-adv: Force mac header to start of data on xmit 2019-02-20 10:13:20 +01:00
bluetooth Bluetooth: Fix unnecessary error message for HCI request completion 2019-02-20 10:13:10 +01:00
bridge net: bridge: Fix ethernet header pointer before check skb forwardable 2019-02-06 19:43:03 +01:00
caif
can can: bcm: check timer values before ktime conversion 2019-02-06 19:43:04 +01:00
ceph libceph: avoid KEEPALIVE_PENDING races in ceph_con_keepalive() 2019-02-20 10:13:20 +01:00
core net: fix pskb_trim_rcsum_slow() with odd trim offset 2019-02-08 11:25:33 +01:00
dcb
dccp dccp: fool proof ccid_hc_[rt]x_parse_options() 2019-02-20 10:13:15 +01:00
decnet
dns_resolver
dsa net: dsa: slave: Don't propagate flag changes on down slave interfaces 2019-02-20 10:13:15 +01:00
ethernet
hsr
ieee802154 inet: frags: fix ip6frag_low_thresh boundary 2019-02-08 11:25:32 +01:00
ipv4 net: ipv4: do not handle duplicate fragments as overlapping 2019-02-08 11:25:33 +01:00
ipv6 net: fix IPv6 prefix route residue 2019-02-23 09:05:13 +01:00
ipx
irda
iucv
key
l2tp l2tp: fix reading optional fields of L2TPv3 2019-02-06 19:43:06 +01:00
l3mdev
lapb
llc llc: do not use sk_eat_skb() 2018-12-01 09:46:34 +01:00
mac80211 mac80211: ensure that mgmt tx skbs have tailroom for encryption 2019-02-20 10:13:19 +01:00
mac802154
mpls
netfilter netfilter: nf_tables: fix oops when inserting an element into a verdict map 2018-12-01 09:46:40 +01:00
netlabel
netlink
netrom netrom: switch to sock timer API 2019-02-06 19:43:06 +01:00
nfc
openvswitch openvswitch: Avoid OOB read when parsing flow nlattrs 2019-02-06 19:43:03 +01:00
packet packet: Do not leak dev refcounts on error exit 2019-01-26 09:42:49 +01:00
phonet
rds
rfkill
rose net/rose: fix NULL ax25_cb kernel panic 2019-02-06 19:43:06 +01:00
rxrpc
sched net_sched: refetch skb protocol for each filter 2019-02-06 19:43:03 +01:00
sctp sctp: allocate sctp_sockaddr_entry with kzalloc 2019-01-26 09:42:51 +01:00
sunrpc sunrpc: handle ENOMEM in rpcb_getport_async 2019-01-26 09:42:51 +01:00
switchdev
tipc tipc: use destination length for copy string 2019-02-20 10:13:14 +01:00
unix
vmw_vsock VSOCK: Send reset control packet when socket is partially bound 2019-01-13 10:05:28 +01:00
wimax
wireless
x25
xfrm xfrm: refine validation of template and selector families 2019-02-20 10:13:20 +01:00
compat.c sock: Make sock->sk_stamp thread-safe 2019-01-13 10:05:28 +01:00
Kconfig
Makefile
socket.c
sysctl_net.c