Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cda5f98e authored by Daniel Borkmann's avatar Daniel Borkmann Committed by David S. Miller
Browse files

net: sctp: convert sctp_checksum_disable module param into sctp sysctl



Get rid of the last module parameter for SCTP and make this
configurable via sysctl for SCTP like all the rest of SCTP's
configuration knobs.

Signed-off-by: default avatarDaniel Borkmann <dborkman@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2690048c
Loading
Loading
Loading
Loading
+8 −0
Original line number Original line Diff line number Diff line
@@ -1507,6 +1507,14 @@ sack_timeout - INTEGER


	Default: 200
	Default: 200


checksum_disable - BOOLEAN
	Disable SCTP checksum computing and verification for debugging purpose.

	1: Disable checksumming
	0: Enable checksumming

	Default: 0

valid_cookie_life - INTEGER
valid_cookie_life - INTEGER
	The default lifetime of the SCTP cookie (in milliseconds).  The cookie
	The default lifetime of the SCTP cookie (in milliseconds).  The cookie
	is used during association establishment.
	is used during association establishment.
+3 −0
Original line number Original line Diff line number Diff line
@@ -129,6 +129,9 @@ struct netns_sctp {


	/* Threshold for autoclose timeout, in seconds. */
	/* Threshold for autoclose timeout, in seconds. */
	unsigned long max_autoclose;
	unsigned long max_autoclose;

	/* Flag to disable SCTP checksumming. */
	int checksum_disable;
};
};


#endif /* __NETNS_SCTP_H__ */
#endif /* __NETNS_SCTP_H__ */
+0 −5
Original line number Original line Diff line number Diff line
@@ -141,10 +141,6 @@ extern struct sctp_globals {
	/* This is the sctp port control hash.	*/
	/* This is the sctp port control hash.	*/
	int port_hashsize;
	int port_hashsize;
	struct sctp_bind_hashbucket *port_hashtable;
	struct sctp_bind_hashbucket *port_hashtable;

	/* Flag to indicate whether computing and verifying checksum
	 * is disabled. */
        bool checksum_disable;
} sctp_globals;
} sctp_globals;


#define sctp_max_instreams		(sctp_globals.max_instreams)
#define sctp_max_instreams		(sctp_globals.max_instreams)
@@ -156,7 +152,6 @@ extern struct sctp_globals {
#define sctp_assoc_hashtable		(sctp_globals.assoc_hashtable)
#define sctp_assoc_hashtable		(sctp_globals.assoc_hashtable)
#define sctp_port_hashsize		(sctp_globals.port_hashsize)
#define sctp_port_hashsize		(sctp_globals.port_hashsize)
#define sctp_port_hashtable		(sctp_globals.port_hashtable)
#define sctp_port_hashtable		(sctp_globals.port_hashtable)
#define sctp_checksum_disable		(sctp_globals.checksum_disable)


/* SCTP Socket type: UDP or TCP style. */
/* SCTP Socket type: UDP or TCP style. */
typedef enum {
typedef enum {
+2 −2
Original line number Original line Diff line number Diff line
@@ -140,7 +140,7 @@ int sctp_rcv(struct sk_buff *skb)
	__skb_pull(skb, skb_transport_offset(skb));
	__skb_pull(skb, skb_transport_offset(skb));
	if (skb->len < sizeof(struct sctphdr))
	if (skb->len < sizeof(struct sctphdr))
		goto discard_it;
		goto discard_it;
	if (!sctp_checksum_disable && !skb_csum_unnecessary(skb) &&
	if (!net->sctp.checksum_disable && !skb_csum_unnecessary(skb) &&
	    sctp_rcv_checksum(net, skb) < 0)
	    sctp_rcv_checksum(net, skb) < 0)
		goto discard_it;
		goto discard_it;


+4 −1
Original line number Original line Diff line number Diff line
@@ -395,6 +395,7 @@ int sctp_packet_transmit(struct sctp_packet *packet)
	int padding;		/* How much padding do we need?  */
	int padding;		/* How much padding do we need?  */
	__u8 has_data = 0;
	__u8 has_data = 0;
	struct dst_entry *dst = tp->dst;
	struct dst_entry *dst = tp->dst;
	struct net *net;
	unsigned char *auth = NULL;	/* pointer to auth in skb data */
	unsigned char *auth = NULL;	/* pointer to auth in skb data */
	__u32 cksum_buf_len = sizeof(struct sctphdr);
	__u32 cksum_buf_len = sizeof(struct sctphdr);


@@ -541,7 +542,9 @@ int sctp_packet_transmit(struct sctp_packet *packet)
	 * Note: Adler-32 is no longer applicable, as has been replaced
	 * Note: Adler-32 is no longer applicable, as has been replaced
	 * by CRC32-C as described in <draft-ietf-tsvwg-sctpcsum-02.txt>.
	 * by CRC32-C as described in <draft-ietf-tsvwg-sctpcsum-02.txt>.
	 */
	 */
	if (!sctp_checksum_disable) {
	net = dev_net(dst->dev);

	if (!net->sctp.checksum_disable) {
		if (!(dst->dev->features & NETIF_F_SCTP_CSUM)) {
		if (!(dst->dev->features & NETIF_F_SCTP_CSUM)) {
			__u32 crc32 = sctp_start_cksum((__u8 *)sh, cksum_buf_len);
			__u32 crc32 = sctp_start_cksum((__u8 *)sh, cksum_buf_len);


Loading