]> git.baikalelectronics.ru Git - kernel.git/commit
sctp: create udp4 sock and add its encap_rcv
authorXin Long <lucien.xin@gmail.com>
Thu, 29 Oct 2020 07:04:58 +0000 (15:04 +0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 30 Oct 2020 22:23:52 +0000 (15:23 -0700)
commit945cafc105b0cb8865d491877324f64749595505
treedb151fd8b905d87d9b15a845a17339736881d2e6
parent5247d28bbe1846aa3b43a5d75005f8b50f6ef3d2
sctp: create udp4 sock and add its encap_rcv

This patch is to add the functions to create/release udp4 sock,
and set the sock's encap_rcv to process the incoming udp encap
sctp packets. In sctp_udp_rcv(), as we can see, all we need to
do is fix the transport header for sctp_rcv(), then it would
implement the part of rfc6951#section-5.4:

  "When an encapsulated packet is received, the UDP header is removed.
   Then, the generic lookup is performed, as done by an SCTP stack
   whenever a packet is received, to find the association for the
   received SCTP packet"

Note that these functions will be called in the last patch of
this patchset when enabling this feature.

v1->v2:
  - Add pr_err() when fails to create udp v4 sock.
v2->v3:
  - Add 'select NET_UDP_TUNNEL' in sctp Kconfig.
v3->v4:
  - No change.
v4->v5:
  - Change to set udp_port to 0 by default.

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
include/net/sctp/constants.h
include/net/sctp/sctp.h
net/sctp/Kconfig
net/sctp/protocol.c