OSDN Git Service

sctp: create udp6 sock and set its encap_rcv
authorXin Long <lucien.xin@gmail.com>
Thu, 29 Oct 2020 07:04:59 +0000 (15:04 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 30 Oct 2020 22:23:56 +0000 (15:23 -0700)
commit9d6ba260a0734d5e56243929a69d57ebbf0cb245
tree5cc755b4df52f83a869f3b6a345f9de6c903ff3d
parent965ae44412f8c0c19945b3f62bc945ad0b15a8aa
sctp: create udp6 sock and set its encap_rcv

This patch is to add the udp6 sock part in sctp_udp_sock_start/stop().
udp_conf.use_udp6_rx_checksums is set to true, as:

   "The SCTP checksum MUST be computed for IPv4 and IPv6, and the UDP
    checksum SHOULD be computed for IPv4 and IPv6"

says in rfc6951#section-5.3.

v1->v2:
  - Add pr_err() when fails to create udp v6 sock.
  - Add #if IS_ENABLED(CONFIG_IPV6) not to create v6 sock when ipv6 is
    disabled.

Signed-off-by: Xin Long <lucien.xin@gmail.com>
Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
include/net/netns/sctp.h
net/sctp/protocol.c