Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | xt_sctp: support a couple of new chunk types | Yuxuan Luo | 2022-07-13 | 1 | -0/+4 |
| | | | | | | | | | | There are new chunks added in Linux SCTP not being traced by iptables. This patch introduces the following chunks for tracing: I_DATA, I_FORWARD_TSN (RFC8260), RE_CONFIG(RFC6525) and PAD(RFC4820) Signed-off-by: Yuxuan Luo <luoyuxuan.carl@gmail.com> Signed-off-by: Phil Sutter <phil@nwl.cc> | ||||
* | libxt_sctp: fix array out of range in print_chunk | huaibin Wang | 2017-11-13 | 1 | -6/+3 |
| | | | | | | | | | | | | | | | | | For chunk type ASCONF, ASCONF_ACK and FORWARD_TSN, sctp_chunk_names[].chunk_type is not equal to the corresponding index in sctp_chunk_names[]. Using this field leads to a segmentation fault (index out of range). Example $ iptables -A INPUT -p sctp --chunk-type all ASCONF,ASCONF_ACK,FORWARD_TSN -j ACCEPT $ iptables -L Chain INPUT (policy ACCEPT) target prot opt source destination Segmentation fault Signed-off-by: huaibin Wang <huaibin.wang@6wind.com> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> | ||||
* | extensions: libxt_sctp: add unit test | Pablo Neira Ayuso | 2013-10-07 | 1 | -0/+32 |
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> |