2005-04-17 02:20:36 +04:00
#
# SCTP configuration
#
2007-05-24 01:48:57 +04:00
menuconfig IP_SCTP
2013-02-13 04:24:56 +04:00
tristate "The SCTP Protocol"
depends on INET
2005-04-17 02:20:36 +04:00
depends on IPV6 || IPV6=n
2007-11-29 17:53:52 +03:00
select CRYPTO
select CRYPTO_HMAC
select CRYPTO_SHA1
2007-12-17 01:06:41 +03:00
select LIBCRC32C
2005-04-17 02:20:36 +04:00
---help---
Stream Control Transmission Protocol
From RFC 2960 <http://www.ietf.org/rfc/rfc2960.txt>.
"SCTP is a reliable transport protocol operating on top of a
connectionless packet network such as IP. It offers the following
services to its users:
-- acknowledged error-free non-duplicated transfer of user data,
-- data fragmentation to conform to discovered path MTU size,
-- sequenced delivery of user messages within multiple streams,
with an option for order-of-arrival delivery of individual user
messages,
-- optional bundling of multiple user messages into a single SCTP
packet, and
-- network-level fault tolerance through supporting of multi-
homing at either or both ends of an association."
To compile this protocol support as a module, choose M here: the
net: sctp: rework debugging framework to use pr_debug and friends
We should get rid of all own SCTP debug printk macros and use the ones
that the kernel offers anyway instead. This makes the code more readable
and conform to the kernel code, and offers all the features of dynamic
debbuging that pr_debug() et al has, such as only turning on/off portions
of debug messages at runtime through debugfs. The runtime cost of having
CONFIG_DYNAMIC_DEBUG enabled, but none of the debug statements printing,
is negligible [1]. If kernel debugging is completly turned off, then these
statements will also compile into "empty" functions.
While we're at it, we also need to change the Kconfig option as it /now/
only refers to the ifdef'ed code portions in outqueue.c that enable further
debugging/tracing of SCTP transaction fields. Also, since SCTP_ASSERT code
was enabled with this Kconfig option and has now been removed, we
transform those code parts into WARNs resp. where appropriate BUG_ONs so
that those bugs can be more easily detected as probably not many people
have SCTP debugging permanently turned on.
To turn on all SCTP debugging, the following steps are needed:
# mount -t debugfs none /sys/kernel/debug
# echo -n 'module sctp +p' > /sys/kernel/debug/dynamic_debug/control
This can be done more fine-grained on a per file, per line basis and others
as described in [2].
[1] https://www.kernel.org/doc/ols/2009/ols2009-pages-39-46.pdf
[2] Documentation/dynamic-debug-howto.txt
Signed-off-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-06-28 21:49:40 +04:00
module will be called sctp. Debug messages are handeled by the
kernel's dynamic debugging framework.
2005-04-17 02:20:36 +04:00
If in doubt, say N.
2007-05-24 01:48:57 +04:00
if IP_SCTP
2010-05-01 06:41:09 +04:00
config NET_SCTPPROBE
tristate "SCTP: Association probing"
depends on PROC_FS && KPROBES
---help---
This module allows for capturing the changes to SCTP association
state in response to incoming packets. It is used for debugging
SCTP congestion control algorithms. If you don't understand
what was just said, you don't need it: say N.
To compile this code as a module, choose M here: the
module will be called sctp_probe.
2005-04-17 02:20:36 +04:00
config SCTP_DBG_OBJCNT
bool "SCTP: Debug object counts"
2008-07-19 10:03:44 +04:00
depends on PROC_FS
2005-04-17 02:20:36 +04:00
help
If you say Y, this will enable debugging support for counting the
type of objects that are currently allocated. This is useful for
2008-07-19 10:03:44 +04:00
identifying memory leaks. This debug information can be viewed by
2005-04-17 02:20:36 +04:00
'cat /proc/net/sctp/sctp_dbg_objcnt'
If unsure, say N
2012-12-14 19:22:01 +04:00
choice
prompt "Default SCTP cookie HMAC encoding"
2013-01-07 20:47:46 +04:00
default SCTP_DEFAULT_COOKIE_HMAC_MD5
2012-12-14 19:22:01 +04:00
help
This option sets the default sctp cookie hmac algorithm
when in doubt select 'md5'
config SCTP_DEFAULT_COOKIE_HMAC_MD5
bool "Enable optional MD5 hmac cookie generation"
help
Enable optional MD5 hmac based SCTP cookie generation
select SCTP_COOKIE_HMAC_MD5
config SCTP_DEFAULT_COOKIE_HMAC_SHA1
bool "Enable optional SHA1 hmac cookie generation"
help
Enable optional SHA1 hmac based SCTP cookie generation
select SCTP_COOKIE_HMAC_SHA1
config SCTP_DEFAULT_COOKIE_HMAC_NONE
bool "Use no hmac alg in SCTP cookie generation"
help
Use no hmac algorithm in SCTP cookie generation
endchoice
2005-04-17 02:20:36 +04:00
2012-10-24 13:20:03 +04:00
config SCTP_COOKIE_HMAC_MD5
bool "Enable optional MD5 hmac cookie generation"
2005-04-17 02:20:36 +04:00
help
2012-10-24 13:20:03 +04:00
Enable optional MD5 hmac based SCTP cookie generation
select CRYPTO_HMAC if SCTP_COOKIE_HMAC_MD5
select CRYPTO_MD5 if SCTP_COOKIE_HMAC_MD5
config SCTP_COOKIE_HMAC_SHA1
bool "Enable optional SHA1 hmac cookie generation"
2005-04-17 02:20:36 +04:00
help
2012-10-24 13:20:03 +04:00
Enable optional SHA1 hmac based SCTP cookie generation
select CRYPTO_HMAC if SCTP_COOKIE_HMAC_SHA1
select CRYPTO_SHA1 if SCTP_COOKIE_HMAC_SHA1
2005-04-17 02:20:36 +04:00
2007-05-24 01:48:57 +04:00
endif # IP_SCTP