Top |
struct | StunMessage |
enum | StunClass |
enum | StunMethod |
enum | StunAttribute |
typedef | StunTransactionId |
enum | StunError |
enum | StunMessageReturn |
#define | STUN_MESSAGE_BUFFER_INCOMPLETE |
#define | STUN_MESSAGE_BUFFER_INVALID |
StunInputVector |
The STUN Messages API allows you to create STUN messages easily as well as to parse existing messages.
bool stun_message_init (StunMessage *msg
,StunClass c
,StunMethod m
,const StunTransactionId id
);
Initializes a STUN message buffer, with no attributes.
msg |
The StunMessage to initialize |
|
c |
STUN message class (host byte order) |
|
m |
STUN message method (host byte order) |
|
id |
16-bytes transaction ID |
uint16_t
stun_message_length (const StunMessage *msg
);
Get the length of the message (including the header)
const void * stun_message_find (const StunMessage *msg
,StunAttribute type
,uint16_t *palen
);
Finds an attribute in a STUN message and fetches its content
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
palen |
A pointer to store the length of the attribute |
StunMessageReturn stun_message_find_flag (const StunMessage *msg
,StunAttribute type
);
Looks for a flag attribute within a valid STUN message.
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute's size is not zero.
StunMessageReturn stun_message_find32 (const StunMessage *msg
,StunAttribute type
,uint32_t *pval
);
Extracts a 32-bits attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
pval |
A pointer where to store the value (host byte order) |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute's size is not
4 bytes.
StunMessageReturn stun_message_find64 (const StunMessage *msg
,StunAttribute type
,uint64_t *pval
);
Extracts a 64-bits attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
pval |
A pointer where to store the value (host byte order) |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute's size is not
8 bytes.
StunMessageReturn stun_message_find_string (const StunMessage *msg
,StunAttribute type
,char *buf
,size_t buflen
);
Extracts an UTF-8 string from a valid STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
buf |
A pointer where to store the data |
|
buflen |
The length of the buffer |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute is improperly
encoded
STUN_MESSAGE_RETURN_NOT_ENOUGH_SPACE
is return if the buffer size is too
small to hold the string
The string will be nul-terminated.
StunMessageReturn stun_message_find_addr (const StunMessage *msg
,StunAttribute type
,struct sockaddr_storage *addr
,socklen_t *addrlen
);
Extracts a network address attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
addr |
The sockaddr to be filled |
|
addrlen |
The size of the |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute payload size is
wrong or if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_find_xor_addr (const StunMessage *msg
,StunAttribute type
,struct sockaddr_storage *addr
,socklen_t *addrlen
);
Extracts an obfuscated network address attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
addr |
The sockaddr to be filled |
|
addrlen |
The size of the |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute payload size is
wrong or if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_find_xor_addr_full (const StunMessage *msg
,StunAttribute type
,struct sockaddr_storage *addr
,socklen_t *addrlen
,uint32_t magic_cookie
);
Extracts an obfuscated network address attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to find |
|
addr |
The sockaddr to be filled |
|
addrlen |
The size of the |
|
magic_cookie |
The magic cookie to use to XOR the address. |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the attribute payload size is
wrong or if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_find_error (const StunMessage *msg
,int *code
);
Extract the error response code from a STUN message
void * stun_message_append (StunMessage *msg
,StunAttribute type
,size_t length
);
Reserves room for appending an attribute to an unfinished STUN message.
StunMessageReturn stun_message_append_bytes (StunMessage *msg
,StunAttribute type
,const void *data
,size_t len
);
Appends a binary value to a STUN message
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
data |
The data to append |
|
len |
The length of the attribute |
StunMessageReturn stun_message_append_flag (StunMessage *msg
,StunAttribute type
);
Appends an empty flag attribute to a STUN message
StunMessageReturn stun_message_append32 (StunMessage *msg
,StunAttribute type
,uint32_t value
);
Appends a 32-bits value attribute to a STUN message
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
value |
The value to append (host byte order) |
StunMessageReturn stun_message_append64 (StunMessage *msg
,StunAttribute type
,uint64_t value
);
Appends a 64-bits value attribute to a STUN message
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
value |
The value to append (host byte order) |
StunMessageReturn stun_message_append_string (StunMessage *msg
,StunAttribute type
,const char *str
);
Adds an attribute from a nul-terminated string to a STUN message
StunMessageReturn stun_message_append_addr (StunMessage *msg
,StunAttribute type
,const struct sockaddr *addr
,socklen_t addrlen
);
Append a network address attribute to a STUN message
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
addr |
The sockaddr to be append |
|
addrlen |
The size of the |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_append_xor_addr (StunMessage *msg
,StunAttribute type
,const struct sockaddr_storage *addr
,socklen_t addrlen
);
Append an obfuscated network address attribute to a STUN message
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
addr |
The sockaddr to be append |
|
addrlen |
The size of the |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_append_xor_addr_full (StunMessage *msg
,StunAttribute type
,const struct sockaddr_storage *addr
,socklen_t addrlen
,uint32_t magic_cookie
);
Append an obfuscated network address attribute from a STUN message.
msg |
The StunMessage |
|
type |
The StunAttribute to append |
|
addr |
The sockaddr to be append |
|
addrlen |
The size of the |
|
magic_cookie |
The magic cookie to use to XOR the address. |
A StunMessageReturn value.
STUN_MESSAGE_RETURN_INVALID
is returned if the addrlen
is too small
STUN_MESSAGE_RETURN_UNSUPPORTED_ADDRESS
if the address family is unknown.
StunMessageReturn stun_message_append_error (StunMessage *msg
,StunError code
);
Appends the ERROR-CODE attribute to the STUN message and fills it according to code
int stun_message_validate_buffer_length (const uint8_t *msg
,size_t length
,bool has_padding
);
This function will take a data buffer and will try to validate whether it is a STUN message or if it's not or if it's an incomplete STUN message and will provide us with the length of the STUN message.
msg |
The buffer to validate |
|
length |
The length of the buffer |
|
has_padding |
Set TRUE if attributes should be padded to multiple of 4 bytes |
The length of the valid STUN message in the buffer.
See also: STUN_MESSAGE_BUFFER_INCOMPLETE
See also: STUN_MESSAGE_BUFFER_INVALID
ssize_t stun_message_validate_buffer_length_fast (StunInputVector *buffers
,int n_buffers
,size_t total_length
,bool has_padding
);
Quickly validate whether the message in the given buffers
is potentially a
valid STUN message, an incomplete STUN message, or if it’s definitely not one
at all.
This is designed as a first-pass validation only, and does not check the
message’s attributes for validity. If this function returns success, the
buffers can be compacted and a more thorough validation can be performed
using stun_message_validate_buffer_length()
. If it fails, the buffers
definitely do not contain a complete, valid STUN message.
buffers |
array of contiguous StunInputVectors containing already-received message data. |
[array length=n_buffers][in caller-allocated] |
n_buffers |
number of entries in |
|
total_length |
total number of valid bytes stored consecutively in |
|
has_padding |
|
The length of the valid STUN message in the buffer, or zero or -1 on failure
See also: STUN_MESSAGE_BUFFER_INCOMPLETE
See also: STUN_MESSAGE_BUFFER_INVALID
Since: 0.1.5
void stun_message_id (const StunMessage *msg
,StunTransactionId id
);
Retreive the STUN transaction id from a STUN message
StunClass
stun_message_get_class (const StunMessage *msg
);
Retreive the STUN class from a STUN message
StunMethod
stun_message_get_method (const StunMessage *msg
);
Retreive the STUN method from a STUN message
bool stun_message_has_attribute (const StunMessage *msg
,StunAttribute type
);
Checks if an attribute is present within a STUN message.
bool
stun_message_has_cookie (const StunMessage *msg
);
Checks if the STUN message has a RFC5389 compatible cookie
bool
stun_optional (uint16_t t
);
Helper function that checks whether a STUN attribute is a mandatory or an optional attribute
const char *
stun_strerror (StunError code
);
Transforms a STUN error-code into a human readable string
struct StunMessage { StunAgent *agent; uint8_t *buffer; size_t buffer_len; uint8_t *key; size_t key_len; uint8_t long_term_key[16]; bool long_term_valid; };
This structure represents a STUN message
StunAgent * |
The agent that created or validated this message |
|
The buffer containing the STUN message |
||
The length of the buffer (not the size of the message) |
||
The short term credentials key to use for authentication validation or that was used to finalize this message |
||
The length of the associated key |
||
The long term credential key to use for authentication validation or that was used to finalize this message |
||
Whether or not the long_term_key variable contains valid data |
This enum is used to represent the method of a STUN message, as defined by various RFCs
The Binding method as defined by the RFC5389 |
||
The Shared-Secret method as defined by the RFC3489 |
||
The Allocate method as defined by the TURN draft 12 |
||
The Set-Active-Destination method as defined by the TURN draft 4 |
||
The Refresh method as defined by the TURN draft 12 |
||
The Send method as defined by the TURN draft 00 |
||
The Connect method as defined by the TURN draft 4 |
||
The older Set-Active-Destination method as defined by the TURN draft 0 |
||
The Send method used in indication messages as defined by the TURN draft 12 |
||
The Data method used in indication messages as defined by the TURN draft 12 |
||
The Connect-Status method used in indication messages as defined by the TURN draft 4 |
||
The CreatePermission method as defined by the TURN draft 12 |
||
The ChannelBind method as defined by the TURN draft 12 |
Known STUN attribute types as defined by various RFCs and drafts
The MAPPED-ADDRESS attribute as defined by RFC5389 |
||
The RESPONSE-ADDRESS attribute as defined by RFC3489 |
||
The CHANGE-REQUEST attribute as defined by RFC3489 |
||
The SOURCE-ADDRESS attribute as defined by RFC3489 |
||
The CHANGED-ADDRESS attribute as defined by RFC3489 |
||
The USERNAME attribute as defined by RFC5389 |
||
The PASSWORD attribute as defined by RFC3489 |
||
The MESSAGE-INTEGRITY attribute as defined by RFC5389 |
||
The ERROR-CODE attribute as defined by RFC5389 |
||
The UNKNOWN-ATTRIBUTES attribute as defined by RFC5389 |
||
The REFLECTED-FROM attribute as defined by RFC3489 |
||
The CHANNEL-NUMBER attribute as defined by TURN draft 09 and 12 |
||
The LIFETIME attribute as defined by TURN draft 04, 09 and 12 |
||
The ALTERNATE-SERVER attribute as defined by [MS-TURN] |
||
The MAGIC-COOKIE attribute as defined by the rosenberg-midcom TURN draft 08 |
||
The BANDWIDTH attribute as defined by TURN draft 04 |
||
The DESTINATION-ADDRESS attribute as defined by the rosenberg-midcom TURN draft 08 |
||
The REMOTE-ADDRESS attribute as defined by TURN draft 04 |
||
The PEER-ADDRESS attribute as defined by TURN draft 09 |
||
The XOR-PEER-ADDRESS attribute as defined by TURN draft 12 |
||
The DATA attribute as defined by TURN draft 04, 09 and 12 |
||
The REALM attribute as defined by RFC5389 |
||
The NONCE attribute as defined by RFC5389 |
||
The RELAY-ADDRESS attribute as defined by TURN draft 04 |
||
The RELAYED-ADDRESS attribute as defined by TURN draft 09 |
||
The XOR-RELAYED-ADDRESS attribute as defined by TURN draft 12 |
||
The REQUESTED-ADDRESS-TYPE attribute as defined by TURN-IPV6 draft 05 |
||
The REQUESTED-PORT-PROPS attribute as defined by TURN draft 04 |
||
The REQUESTED-PROPS attribute as defined by TURN draft 09 |
||
The EVEN-PORT attribute as defined by TURN draft 12 |
||
The REQUESTED-TRANSPORT attribute as defined by TURN draft 12 |
||
The DONT-FRAGMENT attribute as defined by TURN draft 12 |
||
The XOR-MAPPED-ADDRESS attribute as defined by RFC5389 |
||
The TIMER-VAL attribute as defined by TURN draft 04 |
||
The REQUESTED-IP attribute as defined by TURN draft 04 |
||
The RESERVATION-TOKEN attribute as defined by TURN draft 09 and 12 |
||
The CONNECT-STAT attribute as defined by TURN draft 04 |
||
The PRIORITY attribute as defined by ICE draft 19 |
||
The USE-CANDIDATE attribute as defined by ICE draft 19 |
||
The OPTIONS optional attribute as defined by libjingle |
||
The MS-VERSION optional attribute as defined by [MS-TURN] |
||
The XOR-MAPPED-ADDRESS optional attribute as defined by [MS-TURN] |
||
The SOFTWARE optional attribute as defined by RFC5389 |
||
The ALTERNATE-SERVER optional attribute as defined by RFC5389 |
||
The FINGERPRINT optional attribute as defined by RFC5389 |
||
The ICE-CONTROLLED optional attribute as defined by ICE draft 19 |
||
The ICE-CONTROLLING optional attribute as defined by ICE draft 19 |
||
The MS-SEQUENCE NUMBER optional attribute as defined by [MS-TURN] |
||
The CANDIDATE-IDENTIFIER optional attribute as defined by [MS-ICE2] |
||
The IMPLEMENTATION-VERSION optional attribute as defined by [MS-ICE2] |
||
The NOMINATION attribute as defined by draft-thatcher-ice-renomination-00 and deployed in Google Chrome |
typedef uint8_t StunTransactionId[STUN_MESSAGE_TRANS_ID_LEN];
A type that holds a STUN transaction id.
STUN error codes as defined by various RFCs and drafts
The ERROR-CODE value for the "Try Alternate" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Bad Request" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Unauthorized" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Forbidden" error as defined in RFC7675 |
||
The ERROR-CODE value for the "Unknown Attribute" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Allocation Mismatch" error as defined in TURN draft 12. Equivalent to the "No Binding" error defined in TURN draft 04. |
||
The ERROR-CODE value for the "Stale Nonce" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Active Destination Already Set" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Address Family not Supported" error as defined in TURN IPV6 Draft 05. |
||
The ERROR-CODE value for the "Wrong Credentials" error as defined in TURN Draft 12. |
||
he ERROR-CODE value for the "Unsupported Transport Protocol" error as defined in TURN Draft 12. |
||
The ERROR-CODE value for the "Invalid IP Address" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Invalid Port" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Operation for TCP Only" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Connection Already Exists" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Allocation Quota Reached" error as defined in TURN draft 12. |
||
The ERROR-CODE value for the "Role Conflict" error as defined in ICE draft 19. |
||
The ERROR-CODE value for the "Server Error" error as defined in RFC5389 |
||
The ERROR-CODE value for the "Insufficient Capacity" error as defined in TURN draft 04. |
||
The ERROR-CODE value for the "Insufficient Capacity" error as defined in TURN draft 12. |
||
The maximum possible ERROR-CODE value as defined by RFC 5389. |
The return value of most stun_message_* functions. This enum will report on whether an operation was successful or not and what error occured if any.
#define STUN_MESSAGE_BUFFER_INCOMPLETE 0
Convenience macro for stun_message_validate_buffer_length()
meaning that the
data to validate does not hold a complete STUN message
#define STUN_MESSAGE_BUFFER_INVALID -1
Convenience macro for stun_message_validate_buffer_length()
meaning that the
data to validate is not a valid STUN message
typedef struct { const uint8_t *buffer; size_t size; } StunInputVector;
Container for a single buffer which also stores its length. This is designed for vectored I/O: typically an array of StunInputVectors is passed to functions, providing multiple buffers which store logically contiguous received data.
This is guaranteed to be layed out identically in memory to GInputVector.
Since: 0.1.5