sctp: lack the check for ports in sctp_v6_cmp_addr
authorXin Long <lucien.xin@gmail.com>
Sun, 28 Feb 2016 02:03:51 +0000 (10:03 +0800)
committerDanny Wood <danwood76@gmail.com>
Tue, 29 Jan 2019 13:12:45 +0000 (13:12 +0000)
commit90231174cf1db06cab865bfa3af8dfa8551d74f7
tree5631eb1179414c429a4f6d27d144e8b99a7ea719
parent19def77339300c3a4345b8420ab194eb0c26bb28
sctp: lack the check for ports in sctp_v6_cmp_addr

commit 40b4f0fd74e46c017814618d67ec9127ff20f157 upstream.

As the member .cmp_addr of sctp_af_inet6, sctp_v6_cmp_addr should also check
the port of addresses, just like sctp_v4_cmp_addr, cause it's invoked by
sctp_cmp_addr_exact().

Now sctp_v6_cmp_addr just check the port when two addresses have different
family, and lack the port check for two ipv6 addresses. that will make
sctp_hash_cmp() cannot work well.

so fix it by adding ports comparison in sctp_v6_cmp_addr().

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
net/sctp/ipv6.c