Skip to content

Commit 661dbf3

Browse files
Matija Glavinic Pecoticdavem330
authored andcommitted
net: sctp: fix initialization of local source address on accepted ipv6 sockets
commit efe4208: 'ipv6: make lookups simpler and faster' broke initialization of local source address on accepted ipv6 sockets. Before the mentioned commit receive address was copied along with the contents of ipv6_pinfo in sctp_v6_create_accept_sk. Now when it is moved, it has to be copied separately. This also fixes lksctp's ipv6 regression in a sense that test_getname_v6, TC5 - 'getsockname on a connected server socket' now passes. Signed-off-by: Matija Glavinic Pecotic <matija.glavinic-pecotic.ext@nsn.com> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 3d55f44 commit 661dbf3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

net/sctp/ipv6.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -662,6 +662,8 @@ static struct sock *sctp_v6_create_accept_sk(struct sock *sk,
662662
*/
663663
sctp_v6_to_sk_daddr(&asoc->peer.primary_addr, newsk);
664664

665+
newsk->sk_v6_rcv_saddr = sk->sk_v6_rcv_saddr;
666+
665667
sk_refcnt_debug_inc(newsk);
666668

667669
if (newsk->sk_prot->init(newsk)) {

0 commit comments

Comments
 (0)