stun-types
Repository containing an implementation of STUN (RFC5389/RFC8489) protocol writing in
the Rust programming language. The
turn-types crate uses stun-types to
implement STUN attributes for TURN.
Goals
- Efficiency:
- Zero-copy parsing
- Attributes are directly written to the Message when added.
- Extensible:
- Supports externally defined attributes easily. Four self-contained traits are
required for an reading and writing
Attributes. See defining your own attribute in the documentation for more details. - Message writing can be controlled through the
MessageWritetrait. But if you don't need the complexity, aVec<u8>-based implementation is also available.
- Supports externally defined attributes easily. Four self-contained traits are
required for an reading and writing
Relevant standards
- RFC5245: Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal for Offer/Answer Protocols
- RFC5389: Session Traversal Utilities for NAT (STUN)
- RFC5769: Test Vectors for Session Traversal Utilities for NAT (STUN)
- RFC8445: Interactive Connectivity Establishment (ICE): A Protocol for Network Address Translator (NAT) Traversal
- RFC8489: Session Traversal Utilities for NAT (STUN)
If you are looking for attribute implementations related to TURN, have a look at
the turn-types crate which uses
stun-types to implement the required attributes for TURN.
- RFC5766: Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)
- RFC6062: Traversal Using Relays around NAT (TURN) Extensions for TCP Allocations
- RFC6156: Traversal Using Relays around NAT (TURN) Extension for IPv6
- RFC8656: Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN)
Examples
Have a look at the documentation at the crate root for some examples.
Why not use stun_codec, stun-format, stun-rs, or 'insert crate here'?
Existing STUN crates suffer from one of a few of shortcomings.
- Encoding attributes as enum's rather than as a trait. Using a trait for
attributes allows external code to implement their own attributes and is thus
not limited to what the crate implements. A trait-based approach also allows
us to add attribute implementations without requiring breaking semver.
rust-stun-coderandstun-formatfall into this category. While we do aim to eventually support all the STUN attributes currently defined by the IANA and in various RFCs, we are also not going to force a user to use our implementations (except for integrity and fingerprint attributes). - Non-zero copy parsing. i.e. taking some input data and making no copies
unless a specific attribute implementation requires. This is not usually a big
deal with most STUN attributes as attributes are usually very small however
this can become a significant issue with TURN usage where a STUN attribute
contains the data sent and received. Our goal is to perform no copies of the
data unless necessary.
stun-format,stun_codec,stun-rsfail this design goal. The only other implementation I could find at the time of writing wasturn-rswhich contains a very minimal STUN implementation that is only sufficient for TURN usage. - Overly complicated with macros and many traits. It shouldn't be
necessary to implement STUN with complicated macros or
decoder/encodertraits for messages and attributes. STUN is a relatively simple byte codec and does not require a complicated implementation.stun-rs,stun_codec, currently fail this design goal.