GNUnet 0.28.0-dev.2-27-gc87478450
 
Loading...
Searching...
No Matches
nat_api_stun.c File Reference

This code provides some support for doing STUN transactions. More...

#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_resolver_service.h"
#include "gnunet_nat_service.h"
#include "nat_stun.h"
Include dependency graph for nat_api_stun.c:

Go to the source code of this file.

Data Structures

struct  GNUNET_NAT_STUN_Handle
 Handle to a request given to the resolver. More...
 

Macros

#define LOG(kind, ...)   GNUNET_log_from (kind, "stun", __VA_ARGS__)
 
#define TIMEOUT   GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
 

Functions

static int encode_message (enum StunClasses msg_class, enum StunMethods method)
 Encode a class and method to a compatible STUN format.
 
static void generate_request_id (struct stun_header *req)
 Fill the stun_header with a random request_id.
 
static void stun_dns_callback (void *cls, const struct sockaddr *addr, socklen_t addrlen)
 Try to establish a connection given the specified address.
 
struct GNUNET_NAT_STUN_HandleGNUNET_NAT_stun_make_request (const char *server, uint16_t port, struct GNUNET_NETWORK_Handle *sock, GNUNET_NAT_TestCallback cb, void *cb_cls)
 Make Generic STUN request.
 
void GNUNET_NAT_stun_make_request_cancel (struct GNUNET_NAT_STUN_Handle *rh)
 Cancel active STUN request.
 

Detailed Description

This code provides some support for doing STUN transactions.

We send simplest possible packet ia REQUEST with BIND to a STUN server.

All STUN packets start with a simple header made of a type, length (excluding the header) and a 16-byte random transaction id. Following the header we may have zero or more attributes, each structured as a type, length and a value (whose format depends on the type, but often contains addresses). Of course all fields are in network format.

This code was based on ministun.c.

Functions for STUN functionality

Author
Bruno Souza Cabral

Definition in file nat_api_stun.c.

Macro Definition Documentation

◆ LOG

#define LOG (   kind,
  ... 
)    GNUNET_log_from (kind, "stun", __VA_ARGS__)

Definition at line 46 of file nat_api_stun.c.

◆ TIMEOUT

Definition at line 48 of file nat_api_stun.c.

Function Documentation

◆ encode_message()

static int encode_message ( enum StunClasses  msg_class,
enum StunMethods  method 
)
static

Encode a class and method to a compatible STUN format.

Parameters
msg_classclass to be converted
methodmethod to be converted
Returns
message in a STUN compatible format

Definition at line 103 of file nat_api_stun.c.

105{
106 return ((msg_class & 1) << 4) | ((msg_class & 2) << 7)
107 | (method & 0x000f) | ((method & 0x0070) << 1) | ((method & 0x0f800)
108 << 2);
109}

Referenced by stun_dns_callback().

Here is the caller graph for this function:

◆ generate_request_id()

static void generate_request_id ( struct stun_header req)
static

Fill the stun_header with a random request_id.

Parameters
reqstun header to be filled

Definition at line 118 of file nat_api_stun.c.

119{
120 req->magic = htonl (STUN_MAGIC_COOKIE);
121 for (unsigned int x = 0; x < 3; x++)
122 req->id.id[x] = GNUNET_CRYPTO_random_u32 (UINT32_MAX);
123}
uint32_t GNUNET_CRYPTO_random_u32(uint32_t i)
Produce a random value.
#define STUN_MAGIC_COOKIE
Definition nat_stun.h:34
uint32_t magic
Definition nat_stun.h:46
stun_trans_id id
Definition nat_stun.h:47
uint32_t id[3]
Definition nat_stun.h:38

References GNUNET_CRYPTO_random_u32(), stun_trans_id::id, stun_header::id, stun_header::magic, and STUN_MAGIC_COOKIE.

Referenced by stun_dns_callback().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ stun_dns_callback()

static void stun_dns_callback ( void *  cls,
const struct sockaddr *  addr,
socklen_t  addrlen 
)
static

Try to establish a connection given the specified address.

Parameters
clsour struct GNUNET_NAT_STUN_Handle *
addraddress to try, NULL for "last call"
addrlenlength of addr

Definition at line 134 of file nat_api_stun.c.

137{
138 struct GNUNET_NAT_STUN_Handle *rh = cls;
139 struct stun_header req;
140 struct sockaddr_in server;
141
142 if (NULL == addr)
143 {
144 rh->dns_active = NULL;
145 if (GNUNET_NO == rh->dns_success)
146 {
148 "Error resolving host %s\n",
149 rh->stun_server);
150 rh->cb (rh->cb_cls,
152 }
153 else if (GNUNET_SYSERR == rh->dns_success)
154 {
155 rh->cb (rh->cb_cls,
157 }
158 else
159 {
160 rh->cb (rh->cb_cls,
162 }
164 return;
165 }
166
168 memset (&server, 0, sizeof(server));
169 server.sin_family = AF_INET;
170 server.sin_addr = ((struct sockaddr_in *) addr)->sin_addr;
171 server.sin_port = htons (rh->stun_port);
172#if HAVE_SOCKADDR_IN_SIN_LEN
173 server.sin_len = (u_char) sizeof(struct sockaddr_in);
174#endif
175
176 /* Craft the simplest possible STUN packet. A request binding */
177 generate_request_id (&req);
178 req.msglen = htons (0);
179 req.msgtype = htons (encode_message (STUN_REQUEST,
180 STUN_BINDING));
181
182 /* Send the packet */
183 if (-1 ==
185 &req,
186 sizeof(req),
187 (const struct sockaddr *) &server,
188 sizeof(server)))
189 {
191 "sendto");
193 return;
194 }
195}
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_log_strerror(level, cmd)
Log an error message at log-level 'level' that indicates a failure of the command 'cmd' with the mess...
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_INFO
void GNUNET_NAT_stun_make_request_cancel(struct GNUNET_NAT_STUN_Handle *rh)
Cancel active STUN request.
@ GNUNET_NAT_ERROR_NOT_ONLINE
detected that we are offline
@ GNUNET_NAT_ERROR_SUCCESS
Just the default.
@ GNUNET_NAT_ERROR_INTERNAL_NETWORK_ERROR
Failure in network subsystem, check permissions.
ssize_t GNUNET_NETWORK_socket_sendto(const struct GNUNET_NETWORK_Handle *desc, const void *message, size_t length, const struct sockaddr *dest_addr, socklen_t dest_len)
Send data to a particular destination (always non-blocking).
Definition network.c:771
#define LOG(kind,...)
static int encode_message(enum StunClasses msg_class, enum StunMethods method)
Encode a class and method to a compatible STUN format.
static void generate_request_id(struct stun_header *req)
Fill the stun_header with a random request_id.
@ STUN_BINDING
Definition nat_stun.h:97
@ STUN_REQUEST
Definition nat_stun.h:88
Handle to a request given to the resolver.
int dns_success
Do we got a DNS resolution successfully?
GNUNET_NAT_TestCallback cb
Function to call when a error occurs.
struct GNUNET_RESOLVER_RequestHandle * dns_active
Handle to a pending DNS lookup request.
void * cb_cls
Closure for cb.
char * stun_server
Stun server address.
uint16_t stun_port
STUN port.
struct GNUNET_NETWORK_Handle * sock
Handle to the listen socket.

References GNUNET_NAT_STUN_Handle::cb, GNUNET_NAT_STUN_Handle::cb_cls, GNUNET_NAT_STUN_Handle::dns_active, GNUNET_NAT_STUN_Handle::dns_success, encode_message(), generate_request_id(), GNUNET_ERROR_TYPE_ERROR, GNUNET_ERROR_TYPE_INFO, GNUNET_log_strerror, GNUNET_NAT_ERROR_INTERNAL_NETWORK_ERROR, GNUNET_NAT_ERROR_NOT_ONLINE, GNUNET_NAT_ERROR_SUCCESS, GNUNET_NAT_stun_make_request_cancel(), GNUNET_NETWORK_socket_sendto(), GNUNET_NO, GNUNET_SYSERR, GNUNET_YES, LOG, stun_header::msglen, stun_header::msgtype, GNUNET_NAT_STUN_Handle::sock, STUN_BINDING, GNUNET_NAT_STUN_Handle::stun_port, STUN_REQUEST, and GNUNET_NAT_STUN_Handle::stun_server.

Referenced by GNUNET_NAT_stun_make_request().

Here is the call graph for this function:
Here is the caller graph for this function: