GNUnet 0.28.0-dev.2-10-g49d3de5da
 
Loading...
Searching...
No Matches
gnunet-service-cadet_tunnels.h File Reference

Information we track per tunnel. More...

Include dependency graph for gnunet-service-cadet_tunnels.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define DESIRED_CONNECTIONS_PER_TUNNEL   3
 How many connections would we like to have per tunnel?
 

Typedefs

typedef void(* GCT_SendContinuation) (void *cls, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid)
 Function called when a transmission requested using GCT_send is done.
 
typedef void(* GCT_ConnectionIterator) (void *cls, struct CadetTConnection *ct)
 Iterator over connections.
 
typedef void(* GCT_ChannelIterator) (void *cls, struct CadetChannel *ch)
 Iterator over channels.
 

Enumerations

enum  CadetTunnelEState {
  CADET_TUNNEL_KEY_UNINITIALIZED , CADET_TUNNEL_KEY_AX_SENT , CADET_TUNNEL_KEY_AX_RECV , CADET_TUNNEL_KEY_AX_SENT_AND_RECV ,
  CADET_TUNNEL_KEY_AX_AUTH_SENT , CADET_TUNNEL_KEY_OK
}
 All the encryption states a tunnel can be in. More...
 

Functions

int GCT_alice_or_betty (const struct GNUNET_PeerIdentity *other)
 Am I Alice or Betty (some call her Bob), or talking to myself?
 
const char * GCT_2s (const struct CadetTunnel *t)
 Get the static string for the peer this tunnel is directed.
 
struct CadetTunnelGCT_create_tunnel (struct CadetPeer *destination)
 Create a tunnel to destination.
 
void GCT_destroy_tunnel_now (struct CadetTunnel *t)
 Destroys the tunnel t now, without delay.
 
int GCT_add_inbound_connection (struct CadetTunnel *t, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, struct CadetPeerPath *path)
 Add a connection to the tunnel.
 
void GCT_connection_lost (struct CadetTConnection *ct)
 We lost a connection, remove it from our list and clean up the connection object itself.
 
struct CadetPeerGCT_get_destination (struct CadetTunnel *t)
 Return the peer to which this tunnel goes.
 
void GCT_consider_path (struct CadetTunnel *t, struct CadetPeerPath *p, unsigned int off)
 Consider using the path p for the tunnel t.
 
struct GNUNET_CADET_ChannelTunnelNumber GCT_add_channel (struct CadetTunnel *t, struct CadetChannel *ch)
 Add a channel to a tunnel.
 
void GCT_remove_channel (struct CadetTunnel *t, struct CadetChannel *ch, struct GNUNET_CADET_ChannelTunnelNumber ctn)
 Remove a channel from a tunnel.
 
void GCT_send_channel_destroy (struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn)
 Send a DESTROY message via the tunnel.
 
struct CadetTunnelQueueEntryGCT_send (struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn)
 Sends an already built message on a tunnel, encrypting it and choosing the best connection if not provided.
 
void GCT_send_cancel (struct CadetTunnelQueueEntry *q)
 Cancel a previously sent message while it's in the queue.
 
unsigned int GCT_count_channels (struct CadetTunnel *t)
 Returns the number of channels using a tunnel.
 
unsigned int GCT_count_any_connections (const struct CadetTunnel *t)
 Counts the number of connections created for a tunnel, including busy connections.
 
void GCT_iterate_connections (struct CadetTunnel *t, GCT_ConnectionIterator iter, void *iter_cls)
 Iterate over all connections of a tunnel.
 
void GCT_iterate_channels (struct CadetTunnel *t, GCT_ChannelIterator iter, void *iter_cls)
 Iterate over all channels of a tunnel.
 
enum CadetTunnelEState GCT_get_estate (struct CadetTunnel *t)
 Get the encryption state of a tunnel.
 
void GCT_change_estate (struct CadetTunnel *t, enum CadetTunnelEState state)
 Change the tunnel encryption state.
 
void GCT_handle_kx (struct CadetTConnection *ct, const struct GNUNET_CADET_TunnelKeyExchangeMessage *msg)
 Handle KX message that lacks authentication (and which will thus only be considered authenticated after we respond with our own KX_AUTH and finally successfully decrypt the payload).
 
void GCT_handle_kx_auth (struct CadetTConnection *ct, const struct GNUNET_CADET_TunnelKeyExchangeAuthMessage *msg)
 Handle KX_AUTH message.
 
void GCT_handle_encrypted (struct CadetTConnection *ct, const struct GNUNET_CADET_TunnelEncryptedMessage *msg)
 Handle encrypted message.
 
void GCT_debug (const struct CadetTunnel *t, enum GNUNET_ErrorType level)
 Log all possible info about the tunnel state.
 

Detailed Description

Information we track per tunnel.

Author
Bartlomiej Polot
Christian Grothoff

Definition in file gnunet-service-cadet_tunnels.h.

Macro Definition Documentation

◆ DESIRED_CONNECTIONS_PER_TUNNEL

#define DESIRED_CONNECTIONS_PER_TUNNEL   3

How many connections would we like to have per tunnel?

Definition at line 37 of file gnunet-service-cadet_tunnels.h.

Typedef Documentation

◆ GCT_SendContinuation

typedef void(* GCT_SendContinuation) (void *cls, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid)

Function called when a transmission requested using GCT_send is done.

Parameters
clsclosure
ctnidentifier of the connection used for transmission, NULL if the transmission failed (to be used to match ACKs to the respective connection for connection performance evaluation)

Definition at line 217 of file gnunet-service-cadet_tunnels.h.

◆ GCT_ConnectionIterator

typedef void(* GCT_ConnectionIterator) (void *cls, struct CadetTConnection *ct)

Iterator over connections.

Parameters
clsclosure
ctone of the connections

Definition at line 281 of file gnunet-service-cadet_tunnels.h.

◆ GCT_ChannelIterator

typedef void(* GCT_ChannelIterator) (void *cls, struct CadetChannel *ch)

Iterator over channels.

Parameters
clsclosure
chone of the channels

Definition at line 305 of file gnunet-service-cadet_tunnels.h.

Enumeration Type Documentation

◆ CadetTunnelEState

All the encryption states a tunnel can be in.

Enumerator
CADET_TUNNEL_KEY_UNINITIALIZED 

Uninitialized status, we need to send KX.

We will stay in this state until the first connection is up.

CADET_TUNNEL_KEY_AX_SENT 

KX message sent, waiting for other peer's KX_AUTH.

CADET_TUNNEL_KEY_AX_RECV 

KX message received, trying to send back KX_AUTH.

CADET_TUNNEL_KEY_AX_SENT_AND_RECV 

KX message sent and received, trying to send back KX_AUTH.

CADET_TUNNEL_KEY_AX_AUTH_SENT 

KX received and we sent KX_AUTH back, but we got no traffic yet, so we're waiting for either KX_AUTH or ENCRYPTED traffic from the other peer.

We will not yet send traffic, as this might have been a replay. The other (initiating) peer should send a CHANNEL_OPEN next anyway, and then we are in business!

CADET_TUNNEL_KEY_OK 

Handshake completed: session key available.

Definition at line 43 of file gnunet-service-cadet_tunnels.h.

44{
50
55
60
65
76
81};
@ CADET_TUNNEL_KEY_AX_AUTH_SENT
KX received and we sent KX_AUTH back, but we got no traffic yet, so we're waiting for either KX_AUTH ...
@ CADET_TUNNEL_KEY_AX_SENT
KX message sent, waiting for other peer's KX_AUTH.
@ CADET_TUNNEL_KEY_UNINITIALIZED
Uninitialized status, we need to send KX.
@ CADET_TUNNEL_KEY_AX_SENT_AND_RECV
KX message sent and received, trying to send back KX_AUTH.
@ CADET_TUNNEL_KEY_OK
Handshake completed: session key available.
@ CADET_TUNNEL_KEY_AX_RECV
KX message received, trying to send back KX_AUTH.

Function Documentation

◆ GCT_alice_or_betty()

int GCT_alice_or_betty ( const struct GNUNET_PeerIdentity other)

Am I Alice or Betty (some call her Bob), or talking to myself?

Parameters
otherthe other peer
Returns
GNUNET_YES for Alice, GNUNET_NO for Betty, GNUNET_SYSERR if talking to myself

Definition at line 540 of file gnunet-service-cadet_tunnels.c.

541{
542 const struct GNUNET_PeerIdentity *my_identity;
543
546
547 if (0 > GNUNET_memcmp (my_identity, other))
548 return GNUNET_YES;
549 else if (0 < GNUNET_memcmp (my_identity, other))
550 return GNUNET_NO;
551 else
552 {
553 GNUNET_break_op (0);
554 return GNUNET_SYSERR;
555 }
556}
static struct GNUNET_PILS_Handle * pils
Handle to PILS.
Definition gnunet-pils.c:44
static struct GNUNET_PeerIdentity my_identity
Identity of this peer.
const struct GNUNET_PeerIdentity * GNUNET_PILS_get_identity(const struct GNUNET_PILS_Handle *handle)
Return the current peer identity of a given handle.
Definition pils_api.c:727
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_break_op(cond)
Use this for assertion violations caused by other peers (i.e.
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
The identity of the host (wraps the signing key of the peer).

References GNUNET_assert, GNUNET_break_op, GNUNET_memcmp, GNUNET_NO, GNUNET_PILS_get_identity(), GNUNET_SYSERR, GNUNET_YES, my_identity, and pils.

Referenced by GCT_handle_kx(), send_create(), send_kx(), and update_ax_by_kx().

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

◆ GCT_2s()

const char * GCT_2s ( const struct CadetTunnel t)

Get the static string for the peer this tunnel is directed.

Parameters
tTunnel.
Returns
Static string the destination peer's ID.

Definition at line 592 of file gnunet-service-cadet_tunnels.c.

593{
594 static char buf[64];
595
596 if (NULL == t)
597 return "Tunnel(NULL)";
598 GNUNET_snprintf (buf,
599 sizeof(buf),
600 "Tunnel %s",
601 GNUNET_i2s (GCP_get_id (t->destination)));
602 return buf;
603}
static struct GNUNET_SCHEDULER_Task * t
Main task.
const struct GNUNET_PeerIdentity * GCP_get_id(struct CadetPeer *cp)
Obtain the peer identity for a struct CadetPeer.
const char * GNUNET_i2s(const struct GNUNET_PeerIdentity *pid)
Convert a peer identity to a string (for printing debug messages).
int GNUNET_snprintf(char *buf, size_t size, const char *format,...) __attribute__((format(printf
Like snprintf, just aborts if the buffer is of insufficient size.

References GCP_get_id(), GNUNET_i2s(), GNUNET_snprintf(), and t.

Referenced by connection_ready_cb(), consider_path_cb(), cont_GCT_handle_kx(), cont_GCT_handle_kx_auth(), destroy_tunnel(), GCC_2s(), GCCH_bind(), GCCH_channel_local_new(), GCCH_debug(), GCP_drop_tunnel(), GCT_add_channel(), GCT_add_inbound_connection(), GCT_change_estate(), GCT_consider_path(), GCT_debug(), GCT_handle_encrypted(), GCT_handle_kx(), GCT_handle_kx_auth(), GCT_remove_channel(), GCT_send(), handle_plaintext_channel_destroy(), handle_plaintext_channel_open(), handle_plaintext_channel_open_ack(), handle_plaintext_keepalive(), maintain_connections_cb(), retry_kx(), send_keepalive(), send_kx(), send_kx_auth(), try_send_normal_payload(), and update_state().

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

◆ GCT_create_tunnel()

struct CadetTunnel * GCT_create_tunnel ( struct CadetPeer destination)

Create a tunnel to destination.

Must only be called from within GCP_get_tunnel().

Parameters
destinationwhere to create the tunnel to
Returns
new tunnel to destination

Definition at line 3243 of file gnunet-service-cadet_tunnels.c.

3244{
3245 struct CadetTunnel *t = GNUNET_new (struct CadetTunnel);
3247 GNUNET_MQ_hd_fixed_size (plaintext_keepalive,
3249 struct GNUNET_MessageHeader,
3250 t),
3251 GNUNET_MQ_hd_var_size (plaintext_data,
3254 t),
3255 GNUNET_MQ_hd_fixed_size (plaintext_data_ack,
3258 t),
3259 GNUNET_MQ_hd_fixed_size (plaintext_channel_open,
3262 t),
3263 GNUNET_MQ_hd_fixed_size (plaintext_channel_open_ack,
3266 t),
3267 GNUNET_MQ_hd_fixed_size (plaintext_channel_destroy,
3270 t),
3272 };
3273
3274 t->kx_retry_delay = INITIAL_KX_RETRY_DELAY;
3275 new_ephemeral (&t->ax);
3277 t->destination = destination;
3279 t->maintain_connections_task
3281 t);
3282 t->mq = GNUNET_MQ_queue_for_callbacks (NULL,
3283 NULL,
3284 NULL,
3285 NULL,
3286 handlers,
3288 t);
3290 t);
3291 return t;
3292}
struct GNUNET_MQ_MessageHandlers handlers[]
Definition 003.c:1
static void new_ephemeral(struct CadetTunnelAxolotl *ax)
Create a new Axolotl ephemeral (ratchet) key.
static int handle_decrypted(void *cls, const struct GNUNET_MessageHeader *msg)
Handles a message we decrypted, by injecting it into our message queue (which will do the dispatching...
static void decrypted_error_cb(void *cls, enum GNUNET_MQ_Error error)
Function called if we had an error processing an incoming decrypted message.
static void maintain_connections_cb(void *cls)
Function called to maintain the connections underlying our tunnel.
#define INITIAL_KX_RETRY_DELAY
How long do we wait initially before retransmitting the KX? TODO: replace by 2 RTT if/once we have co...
void GNUNET_CRYPTO_ecdhe_key_create(struct GNUNET_CRYPTO_EcdhePrivateKey *pk)
Create a new private key.
Definition crypto_ecc.c:454
struct GNUNET_CONTAINER_MultiHashMap32 * GNUNET_CONTAINER_multihashmap32_create(unsigned int len)
Create a 32-bit key multi hash map.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
struct GNUNET_MQ_Handle * GNUNET_MQ_queue_for_callbacks(GNUNET_MQ_SendImpl send, GNUNET_MQ_DestroyImpl destroy, GNUNET_MQ_CancelImpl cancel, void *impl_state, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *cls)
Create a message queue for the specified handlers.
Definition mq.c:482
#define GNUNET_MQ_handler_end()
End-marker for the handlers array.
#define GNUNET_MQ_hd_var_size(name, code, str, ctx)
#define GNUNET_MQ_hd_fixed_size(name, code, str, ctx)
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN
Ask the cadet service to create a new channel.
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA_ACK
Confirm payload data end-to-end.
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA
Payload data (inside an encrypted tunnel).
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_KEEPALIVE
Announce connection is still alive (direction sensitive).
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY
Ask the cadet service to destroy a channel.
#define GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK
Confirm the creation of a channel.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition scheduler.c:1310
struct GNUNET_MessageStreamTokenizer * GNUNET_MST_create(GNUNET_MessageTokenizerCallback cb, void *cb_cls)
Create a message stream tokenizer.
Definition mst.c:86
Struct containing all information regarding a tunnel to a peer.
Message for cadet data traffic.
Message to acknowledge end-to-end data.
Message to destroy a channel of type GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY.
Message to acknowledge opening a channel of type GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK.
Message to create a Channel.
Message handler for a specific message type.
Header for all communications.

References decrypted_error_cb(), GNUNET_CONTAINER_multihashmap32_create(), GNUNET_CRYPTO_ecdhe_key_create(), GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_APP_DATA_ACK, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_KEEPALIVE, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_OPEN_ACK, GNUNET_MQ_handler_end, GNUNET_MQ_hd_fixed_size, GNUNET_MQ_hd_var_size, GNUNET_MQ_queue_for_callbacks(), GNUNET_MST_create(), GNUNET_new, GNUNET_SCHEDULER_add_now(), handle_decrypted(), handlers, INITIAL_KX_RETRY_DELAY, maintain_connections_cb(), new_ephemeral(), and t.

Referenced by GCP_get_tunnel().

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

◆ GCT_destroy_tunnel_now()

void GCT_destroy_tunnel_now ( struct CadetTunnel t)

Destroys the tunnel t now, without delay.

Used during shutdown.

Parameters
ttunnel to destroy

Definition at line 2411 of file gnunet-service-cadet_tunnels.c.

2412{
2416 t);
2417 GNUNET_assert (0 ==
2419 if (NULL != t->destroy_task)
2420 {
2421 GNUNET_SCHEDULER_cancel (t->destroy_task);
2422 t->destroy_task = NULL;
2423 }
2424 destroy_tunnel (t);
2425}
int shutting_down
Signal that shutdown is happening: prevent recovery measures.
unsigned int GCT_count_channels(struct CadetTunnel *t)
Returns the number of channels using a tunnel.
static void destroy_tunnel(void *cls)
This tunnel is no longer used, destroy it.
static int destroy_remaining_channels(void *cls, uint32_t key, void *value)
Destroy remaining channels during shutdown.
int GNUNET_CONTAINER_multihashmap32_iterate(struct GNUNET_CONTAINER_MultiHashMap32 *map, GNUNET_CONTAINER_MultiHashMapIterator32Callback it, void *it_cls)
Iterate over all entries in the map.
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition scheduler.c:986

References destroy_remaining_channels(), destroy_tunnel(), GCT_count_channels(), GNUNET_assert, GNUNET_CONTAINER_multihashmap32_iterate(), GNUNET_SCHEDULER_cancel(), GNUNET_YES, shutting_down, and t.

Referenced by destroy_tunnels_now().

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

◆ GCT_add_inbound_connection()

int GCT_add_inbound_connection ( struct CadetTunnel t,
const struct GNUNET_CADET_ConnectionTunnelIdentifier cid,
struct CadetPeerPath path 
)

Add a connection to the tunnel.

Parameters
ta tunnel
cidconnection identifier to use for the connection
pathpath to use for the connection
Returns
GNUNET_OK on success, GNUNET_SYSERR on failure (duplicate connection)

Definition at line 3296 of file gnunet-service-cadet_tunnels.c.

3300{
3301 struct CadetTConnection *ct;
3302
3303 ct = GNUNET_new (struct CadetTConnection);
3305 ct->t = t;
3306 ct->cc = GCC_create_inbound (t->destination,
3307 path,
3308 ct,
3309 cid,
3311 ct);
3312 if (NULL == ct->cc)
3313 {
3315 "%s refused inbound %s (duplicate)\n",
3316 GCT_2s (t),
3317 GCC_2s (ct->cc));
3318 GNUNET_free (ct);
3319 return GNUNET_SYSERR;
3320 }
3321 /* FIXME: schedule job to kill connection (and path?) if it takes
3322 too long to get ready! (And track performance data on how long
3323 other connections took with the tunnel!)
3324 => Note: to be done within 'connection'-logic! */
3325 GNUNET_CONTAINER_DLL_insert (t->connection_busy_head,
3326 t->connection_busy_tail,
3327 ct);
3328 t->num_busy_connections++;
3330 "%s has new %s\n",
3331 GCT_2s (t),
3332 GCC_2s (ct->cc));
3333 return GNUNET_OK;
3334}
const char * GCC_2s(const struct CadetConnection *cc)
Get a (static) string for a connection.
struct CadetConnection * GCC_create_inbound(struct CadetPeer *destination, struct CadetPeerPath *path, struct CadetTConnection *ct, const struct GNUNET_CADET_ConnectionTunnelIdentifier *cid, GCC_ReadyCallback ready_cb, void *ready_cb_cls)
Create a connection to destination via path and notify cb whenever we are ready for more data.
static void connection_ready_cb(void *cls, int is_ready)
A connection is is_ready for transmission.
#define LOG(level,...)
const char * GCT_2s(const struct CadetTunnel *t)
Get the static string for the peer this tunnel is directed.
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
@ GNUNET_OK
@ GNUNET_ERROR_TYPE_DEBUG
#define GNUNET_free(ptr)
Wrapper around free.
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get(void)
Get the current time.
Definition time.c:111
Entry in list of connections used by tunnel, with metadata.
struct CadetConnection * cc
Connection handle.
struct GNUNET_TIME_Absolute created
Creation time, to keep oldest connection alive.
struct CadetTunnel * t
Tunnel this connection belongs to.

References CadetTConnection::cc, connection_ready_cb(), CadetTConnection::created, GCC_2s(), GCC_create_inbound(), GCT_2s(), GNUNET_CONTAINER_DLL_insert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_new, GNUNET_OK, GNUNET_SYSERR, GNUNET_TIME_absolute_get(), LOG, t, and CadetTConnection::t.

Referenced by handle_connection_create().

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

◆ GCT_connection_lost()

void GCT_connection_lost ( struct CadetTConnection ct)

We lost a connection, remove it from our list and clean up the connection object itself.

Parameters
ctbinding of connection to tunnel of the connection that was lost.

Definition at line 2247 of file gnunet-service-cadet_tunnels.c.

2248{
2249 struct CadetTunnel *t = ct->t;
2250
2251 if (GNUNET_YES == ct->is_ready)
2252 {
2253 GNUNET_CONTAINER_DLL_remove (t->connection_ready_head,
2254 t->connection_ready_tail,
2255 ct);
2256 t->num_ready_connections--;
2257 }
2258 else
2259 {
2260 GNUNET_CONTAINER_DLL_remove (t->connection_busy_head,
2261 t->connection_busy_tail,
2262 ct);
2263 t->num_busy_connections--;
2264 }
2265 GNUNET_free (ct);
2266}
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
int is_ready
Is the connection currently ready for transmission?

References GNUNET_CONTAINER_DLL_remove, GNUNET_free, GNUNET_YES, CadetTConnection::is_ready, t, and CadetTConnection::t.

Referenced by destroy_t_connection(), GCC_create_inbound(), and GCC_destroy_without_core().

Here is the caller graph for this function:

◆ GCT_get_destination()

struct CadetPeer * GCT_get_destination ( struct CadetTunnel t)

Return the peer to which this tunnel goes.

Parameters
ta tunnel
Returns
the destination of the tunnel

Definition at line 648 of file gnunet-service-cadet_tunnels.c.

649{
650 return t->destination;
651}

References t.

Referenced by GCCH_2s(), GCCH_bind(), GCCH_channel_incoming_new(), get_next_free_ctn(), and timeout_closed_cb().

Here is the caller graph for this function:

◆ GCT_consider_path()

void GCT_consider_path ( struct CadetTunnel t,
struct CadetPeerPath p,
unsigned int  off 
)

Consider using the path p for the tunnel t.

The tunnel destination is at offset off in path p.

Parameters
tour tunnel
pa path to our destination
offoffset of the destination on path path

Definition at line 2927 of file gnunet-service-cadet_tunnels.c.

2930{
2932 "Considering %s for %s (offset %u)\n",
2933 GCPP_2s (p),
2934 GCT_2s (t),
2935 off);
2936 (void) consider_path_cb (t,
2937 p,
2938 off);
2939}
const char * GCPP_2s(struct CadetPeerPath *path)
Convert a path to a human-readable string.
static int consider_path_cb(void *cls, struct CadetPeerPath *path, unsigned int off)
Consider using the path p for the tunnel t.
static struct GNUNET_Process * p
Helper process we started.
Definition gnunet-uri.c:38

References consider_path_cb(), GCPP_2s(), GCT_2s(), GNUNET_ERROR_TYPE_DEBUG, LOG, p, and t.

Referenced by GCP_path_entry_add(), and GCP_set_mq().

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

◆ GCT_add_channel()

struct GNUNET_CADET_ChannelTunnelNumber GCT_add_channel ( struct CadetTunnel t,
struct CadetChannel ch 
)

Add a channel to a tunnel.

Parameters
tTunnel.
chChannel
Returns
unique number identifying ch within t

Add a channel to a tunnel.

Otherwise that notification will be done later in notify_tunnel_up_cb().

Parameters
tTunnel.
chChannel
Returns
unique number identifying ch within t

Definition at line 2188 of file gnunet-service-cadet_tunnels.c.

2190{
2192
2193 ctn = get_next_free_ctn (t);
2194 if (NULL != t->destroy_task)
2195 {
2196 GNUNET_SCHEDULER_cancel (t->destroy_task);
2197 t->destroy_task = NULL;
2198 }
2201 ntohl (ctn.cn),
2202 ch,
2205 "Adding %s to %s with state %d\n",
2206 GCCH_2s (ch),
2207 GCT_2s (t),
2208 t->estate);
2209 switch (t->estate)
2210 {
2212 /* waiting for connection to start KX */
2213 break;
2214
2218 /* we're currently waiting for KX to complete */
2219 break;
2220
2222 /* waiting for OTHER peer to send us data,
2223 we might need to prompt more aggressively! */
2224 if (NULL == t->kx_task)
2225 t->kx_task
2226 = GNUNET_SCHEDULER_add_at (t->next_kx_attempt,
2227 &retry_kx,
2228 t);
2229 break;
2230
2232 /* We are ready. Tell the new channel that we are up. */
2234 break;
2235 }
2236 return ctn;
2237}
static struct GNUNET_CADET_Channel * ch
Channel handle.
const char * GCCH_2s(const struct CadetChannel *ch)
Get the static string for identification of the channel.
void GCCH_tunnel_up(struct CadetChannel *ch)
Function called once and only once after a channel was bound to its tunnel via GCT_add_channel() is r...
static struct GNUNET_CADET_ChannelTunnelNumber get_next_free_ctn(struct CadetTunnel *t)
Compute the next free channel tunnel number for this tunnel.
static void retry_kx(void *cls)
Try to redo the KX or KX_AUTH handshake, if we can.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap32_put(struct GNUNET_CONTAINER_MultiHashMap32 *map, uint32_t key, void *value, enum GNUNET_CONTAINER_MultiHashMapOption opt)
Store a key-value pair in the map.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY
There must only be one value per key; storing a value should fail if a value under the same key alrea...
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_at(struct GNUNET_TIME_Absolute at, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run at the specified time.
Definition scheduler.c:1260
Number identifying a CADET channel within a tunnel.

References CADET_TUNNEL_KEY_AX_AUTH_SENT, CADET_TUNNEL_KEY_AX_RECV, CADET_TUNNEL_KEY_AX_SENT, CADET_TUNNEL_KEY_AX_SENT_AND_RECV, CADET_TUNNEL_KEY_OK, CADET_TUNNEL_KEY_UNINITIALIZED, ch, GNUNET_CADET_ChannelTunnelNumber::cn, GCCH_2s(), GCCH_tunnel_up(), GCT_2s(), get_next_free_ctn(), GNUNET_assert, GNUNET_CONTAINER_multihashmap32_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY, GNUNET_ERROR_TYPE_DEBUG, GNUNET_SCHEDULER_add_at(), GNUNET_SCHEDULER_cancel(), GNUNET_YES, LOG, retry_kx(), and t.

Referenced by GCCH_channel_local_new().

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

◆ GCT_remove_channel()

void GCT_remove_channel ( struct CadetTunnel t,
struct CadetChannel ch,
struct GNUNET_CADET_ChannelTunnelNumber  ctn 
)

Remove a channel from a tunnel.

Parameters
tTunnel.
chChannel
ctnunique number identifying ch within t

Definition at line 2360 of file gnunet-service-cadet_tunnels.c.

2363{
2365 "Removing %s from %s\n",
2366 GCCH_2s (ch),
2367 GCT_2s (t));
2370 ntohl (ctn.cn),
2371 ch));
2372 if ((0 ==
2373 GCT_count_channels (t)) &&
2374 (NULL == t->destroy_task))
2375 {
2376 t->destroy_task
2379 t);
2380 }
2381}
#define IDLE_DESTROY_DELAY
How long do we wait until tearing down an idle tunnel?
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap32_remove(struct GNUNET_CONTAINER_MultiHashMap32 *map, uint32_t key, const void *value)
Remove the given key-value pair from the map.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed(struct GNUNET_TIME_Relative delay, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition scheduler.c:1283
uint32_t cn
Which number does this channel have that uniquely identifies it within its tunnel,...

References ch, GNUNET_CADET_ChannelTunnelNumber::cn, destroy_tunnel(), GCCH_2s(), GCT_2s(), GCT_count_channels(), GNUNET_assert, GNUNET_CONTAINER_multihashmap32_remove(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_SCHEDULER_add_delayed(), GNUNET_YES, IDLE_DESTROY_DELAY, LOG, and t.

Referenced by channel_destroy().

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

◆ GCT_send_channel_destroy()

void GCT_send_channel_destroy ( struct CadetTunnel t,
struct GNUNET_CADET_ChannelTunnelNumber  ctn 
)

Send a DESTROY message via the tunnel.

Parameters
tthe tunnel to transmit over
ctnID of the channel to destroy

Definition at line 3103 of file gnunet-service-cadet_tunnels.c.

3105{
3107
3109 "Sending DESTROY message for channel ID %u\n",
3110 ntohl (ctn.cn));
3111 msg.header.size = htons (sizeof(msg));
3113 msg.reserved = htonl (0);
3114 msg.ctn = ctn;
3115 GCT_send (t,
3116 &msg.header,
3117 NULL,
3118 NULL,
3119 &ctn);
3120}
struct GNUNET_MessageHeader * msg
Definition 005.c:2
struct CadetTunnelQueueEntry * GCT_send(struct CadetTunnel *t, const struct GNUNET_MessageHeader *message, GCT_SendContinuation cont, void *cont_cls, struct GNUNET_CADET_ChannelTunnelNumber *ctn)
Sends an already built message on a tunnel, encrypting it and choosing the best connection if not pro...
uint16_t type
The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
struct GNUNET_CADET_ChannelTunnelNumber ctn
ID of the channel.

References GNUNET_CADET_ChannelTunnelNumber::cn, GNUNET_CADET_ChannelDestroyMessage::ctn, GCT_send(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY, LOG, msg, GNUNET_MessageHeader::size, t, and GNUNET_MessageHeader::type.

Referenced by GCCH_channel_local_destroy(), GCCH_handle_channel_plaintext_data(), GCCH_handle_local_ack(), handle_plaintext_channel_open_ack(), handle_plaintext_data(), and handle_plaintext_data_ack().

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

◆ GCT_send()

struct CadetTunnelQueueEntry * GCT_send ( struct CadetTunnel t,
const struct GNUNET_MessageHeader message,
GCT_SendContinuation  cont,
void *  cont_cls,
struct GNUNET_CADET_ChannelTunnelNumber ctn 
)

Sends an already built message on a tunnel, encrypting it and choosing the best connection if not provided.

Parameters
messageMessage to send. Function modifies it.
tTunnel on which this message is transmitted.
contContinuation to call once message is really sent.
cont_clsClosure for cont.
Returns
Handle to cancel message.

Definition at line 3519 of file gnunet-service-cadet_tunnels.c.

3524{
3525 struct CadetTunnelQueueEntry *tq;
3526 uint16_t message_size;
3527 uint16_t payload_size;
3528 struct GNUNET_MQ_Envelope *env;
3530 struct CadetChannel *ch;
3531
3532 if (NULL != ctn)
3533 {
3534 ch = lookup_channel (t,
3535 *ctn);
3536 if ((NULL != ch) && GCCH_is_type_to_drop (ch, message))
3537 {
3538 GNUNET_break (0);
3539 return NULL;
3540 }
3541 }
3542
3543 if (CADET_TUNNEL_KEY_OK != t->estate)
3544 {
3545 GNUNET_break (0);
3546 return NULL;
3547 }
3548 message_size = ntohs (message->size);
3549 payload_size = message_size + sizeof (struct GNUNET_CRYPTO_AeadMac);
3551 "Encrypting %u bytes for %s\n",
3552 (unsigned int) message_size,
3553 GCT_2s (t));
3554 env = GNUNET_MQ_msg_extra (ax_msg,
3555 payload_size,
3557 t_ax_encrypt (&t->ax,
3558 &ax_msg[1],
3559 message,
3560 message_size);
3562 "# encrypted bytes",
3563 payload_size,
3564 GNUNET_NO);
3565 ax_msg->ax_header.Ns = htonl (t->ax.Ns++);
3566 ax_msg->ax_header.PNs = htonl (t->ax.PNs);
3567 /* FIXME: we should do this once, not once per message;
3568 this is a point multiplication, and DHRs does not
3569 change all the time. */
3571 &ax_msg->ax_header.DHRs);
3572 t_h_encrypt (&t->ax,
3573 ax_msg,
3574 payload_size,
3575 (unsigned char*) &ax_msg[1]);
3576
3577 tq = GNUNET_malloc (sizeof(*tq));
3578 tq->t = t;
3579 tq->env = env;
3580 tq->cid = &ax_msg->cid; /* will initialize 'ax_msg->cid' once we know the connection */
3581 tq->cont = cont;
3582 tq->cont_cls = cont_cls;
3584 t->tq_tail,
3585 tq);
3586 if (NULL != t->send_task)
3587 GNUNET_SCHEDULER_cancel (t->send_task);
3588 t->send_task
3590 t);
3591 return tq;
3592}
struct GNUNET_MQ_Envelope * env
Definition 005.c:1
int GCCH_is_type_to_drop(struct CadetChannel *ch, const struct GNUNET_MessageHeader *message)
Check if type of message is the one to drop.
static struct CadetChannel * lookup_channel(struct CadetTunnel *t, struct GNUNET_CADET_ChannelTunnelNumber ctn)
Lookup a channel by its ctn.
static void t_h_encrypt(struct CadetTunnelAxolotl *ax, struct GNUNET_CADET_TunnelEncryptedMessage *msg, size_t additional_data_size, const unsigned char *additional_data)
Encrypt header with the axolotl header key.
static void trigger_transmissions(void *cls)
Called when either we have a new connection, or a new message in the queue, or some existing connecti...
static void t_ax_encrypt(struct CadetTunnelAxolotl *ax, void *dst, const void *src, size_t size)
Encrypt data with the axolotl tunnel key.
static struct GNUNET_STATISTICS_Handle * stats
Handle to the statistics service.
void GNUNET_CRYPTO_ecdhe_key_get_public(const struct GNUNET_CRYPTO_EcdhePrivateKey *priv, struct GNUNET_CRYPTO_EcdhePublicKey *pub)
Extract the public key for the given private key.
Definition crypto_ecc.c:217
#define GNUNET_CONTAINER_DLL_insert_tail(head, tail, element)
Insert an element at the tail of a DLL.
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_MQ_msg_extra(mvar, esize, type)
Allocate an envelope, with extra space allocated after the space needed by the message struct.
#define GNUNET_MESSAGE_TYPE_CADET_TUNNEL_ENCRYPTED
Axolotl encrypted data.
void GNUNET_STATISTICS_update(struct GNUNET_STATISTICS_Handle *handle, const char *name, int64_t delta, int make_persistent)
Set statistic value for the peer.
Struct containing all information regarding a channel to a remote client.
struct GNUNET_CADET_ChannelTunnelNumber ctn
Number identifying this channel in its tunnel.
Struct used to save messages in a non-ready tunnel to send once connected.
struct GNUNET_MQ_Envelope * env
Envelope of message to send follows.
GCT_SendContinuation cont
Continuation to call once sent (on the channel layer).
struct GNUNET_CADET_ConnectionTunnelIdentifier * cid
Where to put the connection identifier into the payload of the message in env once we have it?
struct CadetTunnel * t
Tunnel these messages belong in.
uint32_t PNs
Number of messages sent with the previous ratchet key.
struct GNUNET_CRYPTO_EcdhePublicKey DHRs
Current ratchet key.
uint32_t Ns
Number of messages sent with the current ratchet key.
Axolotl-encrypted tunnel message with application payload.
struct GNUNET_CADET_AxHeader ax_header
Axolotl-header that specifies which keys to use in which ratchet to decrypt the body that follows.
struct GNUNET_CADET_ConnectionTunnelIdentifier cid
ID of the connection.
type for session keys

References GNUNET_CADET_TunnelEncryptedMessage::ax_header, CADET_TUNNEL_KEY_OK, ch, GNUNET_CADET_TunnelEncryptedMessage::cid, CadetTunnelQueueEntry::cid, CadetTunnelQueueEntry::cont, CadetTunnelQueueEntry::cont_cls, CadetChannel::ctn, GNUNET_CADET_AxHeader::DHRs, env, CadetTunnelQueueEntry::env, GCCH_is_type_to_drop(), GCT_2s(), GNUNET_break, GNUNET_CONTAINER_DLL_insert_tail, GNUNET_CRYPTO_ecdhe_key_get_public(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_malloc, GNUNET_MESSAGE_TYPE_CADET_TUNNEL_ENCRYPTED, GNUNET_MQ_msg_extra, GNUNET_NO, GNUNET_SCHEDULER_add_now(), GNUNET_SCHEDULER_cancel(), GNUNET_STATISTICS_update(), LOG, lookup_channel(), GNUNET_CADET_AxHeader::Ns, GNUNET_CADET_AxHeader::PNs, GNUNET_MessageHeader::size, stats, t, CadetTunnelQueueEntry::t, t_ax_encrypt(), t_h_encrypt(), and trigger_transmissions().

Referenced by GCCH_handle_local_data(), GCT_send_channel_destroy(), retry_transmission(), send_channel_data_ack(), send_channel_open(), send_keepalive(), and send_open_ack().

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

◆ GCT_send_cancel()

void GCT_send_cancel ( struct CadetTunnelQueueEntry q)

Cancel a previously sent message while it's in the queue.

ONLY can be called before the continuation given to the send function is called. Once the continuation is called, the message is no longer in the queue!

Parameters
qHandle to the queue entry to cancel.

Definition at line 3596 of file gnunet-service-cadet_tunnels.c.

3597{
3598 struct CadetTunnel *t = tq->t;
3599
3601 t->tq_tail,
3602 tq);
3603 GNUNET_MQ_discard (tq->env);
3604 GNUNET_free (tq);
3605}
void GNUNET_MQ_discard(struct GNUNET_MQ_Envelope *mqm)
Discard the message queue message, free all allocated resources.
Definition mq.c:285

References CadetTunnelQueueEntry::env, GNUNET_CONTAINER_DLL_remove, GNUNET_free, GNUNET_MQ_discard(), t, and CadetTunnelQueueEntry::t.

Referenced by channel_destroy(), destroy_tunnel(), GCC_destroy(), handle_matching_ack(), send_channel_data_ack(), send_channel_open(), and send_open_ack().

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

◆ GCT_count_channels()

unsigned int GCT_count_channels ( struct CadetTunnel t)

Returns the number of channels using a tunnel.

Parameters
tTunnel in question.
Returns
Number of channels using the tunnel.

Definition at line 655 of file gnunet-service-cadet_tunnels.c.

656{
657 return GNUNET_CONTAINER_multihashmap32_size (t->channels);
658}
unsigned int GNUNET_CONTAINER_multihashmap32_size(const struct GNUNET_CONTAINER_MultiHashMap32 *map)
Get the number of key-value pairs in the map.

References GNUNET_CONTAINER_multihashmap32_size(), and t.

Referenced by connection_ready_cb(), destroy_tunnel(), GCT_destroy_tunnel_now(), GCT_remove_channel(), get_all_tunnels_iterator(), and retry_kx().

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

◆ GCT_count_any_connections()

unsigned int GCT_count_any_connections ( const struct CadetTunnel t)

Counts the number of connections created for a tunnel, including busy connections.

Parameters
tTunnel to be counted.
Returns
Number of connections created for the tunnel.

Definition at line 678 of file gnunet-service-cadet_tunnels.c.

679{
680 return t->num_ready_connections + t->num_busy_connections;
681}

References t.

Referenced by consider_path_cb(), GCT_debug(), get_all_tunnels_iterator(), and maintain_connections_cb().

Here is the caller graph for this function:

◆ GCT_iterate_connections()

void GCT_iterate_connections ( struct CadetTunnel t,
GCT_ConnectionIterator  iter,
void *  iter_cls 
)

Iterate over all connections of a tunnel.

Parameters
tTunnel whose connections to iterate.
iterIterator.
iter_clsClosure for iter.

Definition at line 3616 of file gnunet-service-cadet_tunnels.c.

3619{
3620 struct CadetTConnection *n;
3621
3622 for (struct CadetTConnection *ct = t->connection_ready_head;
3623 NULL != ct;
3624 ct = n)
3625 {
3626 n = ct->next;
3627 iter (iter_cls,
3628 ct);
3629 }
3630 for (struct CadetTConnection *ct = t->connection_busy_head;
3631 NULL != ct;
3632 ct = n)
3633 {
3634 n = ct->next;
3635 iter (iter_cls,
3636 ct);
3637 }
3638}
struct CadetTConnection * next
Next in DLL.

References CadetTConnection::next, and t.

Referenced by consider_path_cb(), destroy_tunnel(), and maintain_connections_cb().

Here is the caller graph for this function:

◆ GCT_iterate_channels()

void GCT_iterate_channels ( struct CadetTunnel t,
GCT_ChannelIterator  iter,
void *  iter_cls 
)

Iterate over all channels of a tunnel.

Parameters
tTunnel whose channels to iterate.
iterIterator.
iter_clsClosure for iter.

Definition at line 3688 of file gnunet-service-cadet_tunnels.c.

3691{
3692 struct ChanIterCls ctx;
3693
3694 ctx.iter = iter;
3695 ctx.iter_cls = iter_cls;
3698 &ctx);
3699}
static struct GNUNET_FS_Handle * ctx
static int iterate_channels_cb(void *cls, uint32_t key, void *value)
Helper function for GCT_iterate_channels.
Closure for iterate_channels_cb.
void * iter_cls
Closure for iter.
GCT_ChannelIterator iter
Function to call.

References ctx, GNUNET_CONTAINER_multihashmap32_iterate(), ChanIterCls::iter, ChanIterCls::iter_cls, iterate_channels_cb(), and t.

Here is the call graph for this function:

◆ GCT_get_estate()

enum CadetTunnelEState GCT_get_estate ( struct CadetTunnel t)

Get the encryption state of a tunnel.

Parameters
tTunnel.
Returns
Tunnel's encryption state.

Definition at line 710 of file gnunet-service-cadet_tunnels.c.

711{
712 return t->estate;
713}

References t.

Referenced by get_all_tunnels_iterator(), handle_connection_create(), send_create(), and send_keepalive().

Here is the caller graph for this function:

◆ GCT_change_estate()

void GCT_change_estate ( struct CadetTunnel t,
enum CadetTunnelEState  state 
)

Change the tunnel encryption state.

If the encryption state changes to OK, stop the rekey task.

Parameters
tTunnel whose encryption state to change, or NULL.
stateNew encryption state.

Definition at line 1329 of file gnunet-service-cadet_tunnels.c.

1331{
1332 enum CadetTunnelEState old = t->estate;
1333
1334 t->estate = state;
1336 "%s estate changed from %s to %s\n",
1337 GCT_2s (t),
1338 estate2s (old),
1339 estate2s (state));
1340
1341 if ((CADET_TUNNEL_KEY_OK != old) &&
1342 (CADET_TUNNEL_KEY_OK == t->estate))
1343 {
1344 if (NULL != t->kx_task)
1345 {
1346 GNUNET_SCHEDULER_cancel (t->kx_task);
1347 t->kx_task = NULL;
1348 }
1349 /* notify all channels that have been waiting */
1352 t);
1353 if (NULL != t->send_task)
1354 GNUNET_SCHEDULER_cancel (t->send_task);
1356 t);
1357 }
1358}
static int state
The current state of the parser.
static int notify_tunnel_up_cb(void *cls, uint32_t key, void *value)
Our tunnel became ready for the first time, notify channels that have been waiting.
static const char * estate2s(enum CadetTunnelEState es)
Get string description for tunnel encryption state.
CadetTunnelEState
All the encryption states a tunnel can be in.

References CADET_TUNNEL_KEY_OK, estate2s(), GCT_2s(), GNUNET_CONTAINER_multihashmap32_iterate(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_SCHEDULER_add_now(), GNUNET_SCHEDULER_cancel(), LOG, notify_tunnel_up_cb(), state, t, and trigger_transmissions().

Referenced by cont_GCT_handle_kx(), cont_GCT_handle_kx_auth(), GCT_handle_encrypted(), handle_connection_create(), send_kx(), and send_kx_auth().

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

◆ GCT_handle_kx()

void GCT_handle_kx ( struct CadetTConnection ct,
const struct GNUNET_CADET_TunnelKeyExchangeMessage msg 
)

Handle KX message that lacks authentication (and which will thus only be considered authenticated after we respond with our own KX_AUTH and finally successfully decrypt the payload).

Parameters
ctconnection/tunnel combo that received encrypted message
msgthe key exchange message

Handle KX message that lacks authentication (and which will thus only be considered authenticated after we respond with our own KX_AUTH and finally successfully decrypt the payload).

Parameters
clsclosure from updating AX by KX
retresult from the update call

Definition at line 1814 of file gnunet-service-cadet_tunnels.c.

1816{
1817 struct CadetTunnel *t = ct->t;
1818
1820 "# KX received",
1821 1,
1822 GNUNET_NO);
1823 if (GNUNET_YES ==
1824 GCT_alice_or_betty (GCP_get_id (t->destination)))
1825 {
1826 /* Betty/Bob is not allowed to send KX! */
1827 GNUNET_break_op (0);
1828 return;
1829 }
1831 "Received KX message from %s with ephemeral %s from %s on connection %s\n",
1832 GCT_2s (t),
1833 GNUNET_e2s (&msg->ephemeral_key),
1834 GNUNET_i2s (GCP_get_id (t->destination)),
1835 GCC_2s (ct->cc));
1836#if 1
1837 if ((0 ==
1838 memcmp (&t->ax.DHRr,
1839 &msg->ratchet_key,
1840 sizeof(msg->ratchet_key))) &&
1841 (0 ==
1842 memcmp (&t->ax.last_ephemeral,
1843 &msg->ephemeral_key,
1844 sizeof(msg->ephemeral_key))))
1845
1846 {
1848 "# Duplicate KX received",
1849 1,
1850 GNUNET_NO);
1851 send_kx_auth (t,
1852 ct,
1853 &t->ax,
1854 GNUNET_NO);
1855 return;
1856 }
1857#endif
1858 /* We only keep ONE unverified KX around, so if there is an existing one,
1859 clean it up. */
1860 if (NULL != t->unverified_ax)
1861 {
1862 if ((0 ==
1863 memcmp (&t->unverified_ax->DHRr,
1864 &msg->ratchet_key,
1865 sizeof(msg->ratchet_key))) &&
1866 (0 ==
1867 memcmp (&t->unverified_ax->last_ephemeral,
1868 &msg->ephemeral_key,
1869 sizeof(msg->ephemeral_key))))
1870 {
1872 "# Duplicate unverified KX received",
1873 1,
1874 GNUNET_NO);
1875#if 1
1876 send_kx_auth (t,
1877 ct,
1878 t->unverified_ax,
1879 GNUNET_NO);
1880 return;
1881#endif
1882 }
1883 if ((t->as.ecdh_op) &&
1884 (0 ==
1885 memcmp (&t->as.ratchet_key,
1886 &msg->ratchet_key,
1887 sizeof(msg->ratchet_key))) &&
1888 (0 ==
1889 memcmp (&t->as.ephemeral_key,
1890 &msg->ephemeral_key,
1891 sizeof(msg->ephemeral_key))))
1892 {
1894 "Waiting for previous ECDH operation\n");
1895 return;
1896 }
1898 "Dropping old unverified KX state.\n");
1900 "# Unverified KX dropped for fresh KX",
1901 1,
1902 GNUNET_NO);
1903 GNUNET_break (NULL == t->unverified_ax->skipped_head);
1904 memset (t->unverified_ax,
1905 0,
1906 sizeof(struct CadetTunnelAxolotl));
1907 }
1908 else
1909 {
1911 "Creating fresh unverified KX for %s\n",
1912 GCT_2s (t));
1914 "# Fresh KX setup",
1915 1,
1916 GNUNET_NO);
1917 t->unverified_ax = GNUNET_new (struct CadetTunnelAxolotl);
1918 }
1919 /* Set as the 'current' RK/DHRr the one we are currently using,
1920 so that the duplicate-detection logic of
1921 #update_ax_by_kx can work. */
1922 t->unverified_ax->RK = t->ax.RK;
1923 t->unverified_ax->DHRr = t->ax.DHRr;
1924 t->unverified_ax->DHRs = t->ax.DHRs;
1925 t->unverified_ax->kx_0 = t->ax.kx_0;
1926 t->unverified_attempts = 0;
1927
1928 t->as.ax = *(t->unverified_ax);
1929 GNUNET_memcpy (&t->as.peer_id, GCP_get_id (t->destination),
1930 sizeof (t->as.peer_id));
1931 GNUNET_memcpy (&t->as.ephemeral_key, &msg->ephemeral_key,
1932 sizeof (t->as.ephemeral_key));
1933 GNUNET_memcpy (&t->as.ratchet_key, &msg->ratchet_key,
1934 sizeof (t->as.ratchet_key));
1935 memset (&t->as.auth, 0, sizeof (t->as.auth));
1936 t->as.flags = 0;
1937 t->as.cb_cls = t;
1938 t->as.cb = &cont_GCT_handle_kx;
1939
1940 if (t->as.ecdh_op)
1941 {
1943 "Cancelling previous ECDH operation\n");
1944
1945 GNUNET_PILS_cancel (t->as.ecdh_op);
1946 }
1947
1948 t->as.ecdh_op = GNUNET_PILS_ecdh (pils, &msg->ephemeral_key,
1949 &update_ax_by_kx, &t->as);
1950}
static void cont_GCT_handle_kx(void *cls, enum GNUNET_GenericReturnValue ret)
Continue to handle KX message.
static void send_kx_auth(struct CadetTunnel *t, struct CadetTConnection *ct, struct CadetTunnelAxolotl *ax, int force_reply)
Send a KX_AUTH message.
int GCT_alice_or_betty(const struct GNUNET_PeerIdentity *other)
Am I Alice or Betty (some call her Bob), or talking to myself?
static void update_ax_by_kx(void *cls, const struct GNUNET_HashCode *key_result)
Update our Axolotl key state based on the KX data we received.
struct GNUNET_PILS_Operation * GNUNET_PILS_ecdh(struct GNUNET_PILS_Handle *handle, const struct GNUNET_CRYPTO_EcdhePublicKey *pub, GNUNET_PILS_EcdhResultCallback cb, void *cb_cls)
Derive key material from a ECDH public key and our private key.
Definition pils_api.c:595
void GNUNET_PILS_cancel(struct GNUNET_PILS_Operation *op)
Cancel request.
Definition pils_api.c:623
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
const char * GNUNET_e2s(const struct GNUNET_CRYPTO_EcdhePublicKey *p)
Convert a public key value to a string (for printing debug messages).
Axolotl data, according to https://github.com/trevp/axolotl/wiki .

References CadetTConnection::cc, cont_GCT_handle_kx(), GCC_2s(), GCP_get_id(), GCT_2s(), GCT_alice_or_betty(), GNUNET_break, GNUNET_break_op, GNUNET_e2s(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_i2s(), GNUNET_memcpy, GNUNET_new, GNUNET_NO, GNUNET_PILS_cancel(), GNUNET_PILS_ecdh(), GNUNET_STATISTICS_update(), GNUNET_YES, LOG, msg, pils, send_kx_auth(), stats, t, CadetTConnection::t, and update_ax_by_kx().

Referenced by GCC_handle_kx().

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

◆ GCT_handle_kx_auth()

void GCT_handle_kx_auth ( struct CadetTConnection ct,
const struct GNUNET_CADET_TunnelKeyExchangeAuthMessage msg 
)

Handle KX_AUTH message.

Parameters
ctconnection/tunnel combo that received encrypted message
msgthe key exchange message

Definition at line 2071 of file gnunet-service-cadet_tunnels.c.

2073{
2074 struct CadetTunnel *t = ct->t;
2075
2077 "# KX_AUTH received",
2078 1,
2079 GNUNET_NO);
2080 if ((CADET_TUNNEL_KEY_UNINITIALIZED == t->estate) ||
2081 (CADET_TUNNEL_KEY_AX_RECV == t->estate))
2082 {
2083 /* Confusing, we got a KX_AUTH before we even send our own
2084 KX. This should not happen. We'll send our own KX ASAP anyway,
2085 so let's ignore this here. */
2086 GNUNET_break_op (0);
2087 return;
2088 }
2090 "Handling KX_AUTH message from %s with ephemeral %s\n",
2091 GCT_2s (t),
2092 GNUNET_e2s (&msg->kx.ephemeral_key));
2093 if ((t->as.ecdh_op) &&
2094 (0 ==
2095 memcmp (&t->as.ratchet_key,
2096 &msg->kx.ratchet_key,
2097 sizeof(msg->kx.ratchet_key))) &&
2098 (0 ==
2099 memcmp (&t->as.ephemeral_key,
2100 &msg->kx.ephemeral_key,
2101 sizeof(msg->kx.ephemeral_key))))
2102 {
2104 "Waiting for previous ECDH operation\n");
2105 return;
2106 }
2107 /* We do everything in a copy until we've checked the authentication
2108 so we don't clobber anything we care about by accident. */
2109 t->as.ax = t->ax;
2110 GNUNET_memcpy (&t->as.peer_id, GCP_get_id (t->destination),
2111 sizeof (t->as.peer_id));
2112 GNUNET_memcpy (&t->as.ephemeral_key, &msg->kx.ephemeral_key,
2113 sizeof (t->as.ephemeral_key));
2114 GNUNET_memcpy (&t->as.ratchet_key, &msg->kx.ratchet_key,
2115 sizeof (t->as.ratchet_key));
2116 t->as.auth = msg->auth;
2117 t->as.flags = msg->kx.flags;
2118 t->as.cb_cls = t;
2119 t->as.cb = &cont_GCT_handle_kx_auth;
2120
2121 if (t->as.ecdh_op)
2122 {
2124 "Cancelling previous ECDH operation\n");
2125
2126 GNUNET_PILS_cancel (t->as.ecdh_op);
2127 }
2128
2129 /* Update 'ax' by the new key material */
2130 t->as.ecdh_op = GNUNET_PILS_ecdh (pils, &msg->kx.ephemeral_key,
2131 &update_ax_by_kx, &t->as);
2132}
static void cont_GCT_handle_kx_auth(void *cls, enum GNUNET_GenericReturnValue ret)
Continue to handle KX_AUTH message.

References CADET_TUNNEL_KEY_AX_RECV, CADET_TUNNEL_KEY_UNINITIALIZED, cont_GCT_handle_kx_auth(), GCP_get_id(), GCT_2s(), GNUNET_break_op, GNUNET_e2s(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_memcpy, GNUNET_NO, GNUNET_PILS_cancel(), GNUNET_PILS_ecdh(), GNUNET_STATISTICS_update(), LOG, msg, pils, stats, t, CadetTConnection::t, and update_ax_by_kx().

Referenced by GCC_handle_kx_auth().

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

◆ GCT_handle_encrypted()

void GCT_handle_encrypted ( struct CadetTConnection ct,
const struct GNUNET_CADET_TunnelEncryptedMessage msg 
)

Handle encrypted message.

Parameters
ctconnection/tunnel combo that received encrypted message
msgthe encrypted message to decrypt

Definition at line 3344 of file gnunet-service-cadet_tunnels.c.

3346{
3347 struct CadetTunnel *t = ct->t;
3348 uint16_t size = ntohs (msg->header.size);
3349 char cbuf[size] GNUNET_ALIGN;
3350 ssize_t decrypted_size;
3351
3353 "%s received %u bytes of encrypted data in state %d\n",
3354 GCT_2s (t),
3355 (unsigned int) size,
3356 t->estate);
3357
3358 switch (t->estate)
3359 {
3362 /* We did not even SEND our KX, how can the other peer
3363 send us encrypted data? Must have been that we went
3364 down and the other peer still things we are up.
3365 Let's send it KX back. */
3367 "# received encrypted without any KX",
3368 1,
3369 GNUNET_NO);
3370 if (NULL != t->kx_task)
3371 {
3372 GNUNET_SCHEDULER_cancel (t->kx_task);
3373 t->kx_task = NULL;
3374 }
3375 send_kx (t,
3376 ct,
3377 &t->ax);
3378 return;
3379
3381 /* We send KX, and other peer send KX to us at the same time.
3382 Neither KX is AUTH'ed, so let's try KX_AUTH this time. */
3384 "# received encrypted without KX_AUTH",
3385 1,
3386 GNUNET_NO);
3387 if (NULL != t->kx_task)
3388 {
3389 GNUNET_SCHEDULER_cancel (t->kx_task);
3390 t->kx_task = NULL;
3391 }
3392 send_kx_auth (t,
3393 ct,
3394 &t->ax,
3395 GNUNET_YES);
3396 return;
3397
3399 /* We did not get the KX of the other peer, but that
3400 might have been lost. Send our KX again immediately. */
3402 "# received encrypted without KX",
3403 1,
3404 GNUNET_NO);
3405 if (NULL != t->kx_task)
3406 {
3407 GNUNET_SCHEDULER_cancel (t->kx_task);
3408 t->kx_task = NULL;
3409 }
3410 send_kx (t,
3411 ct,
3412 &t->ax);
3413 return;
3414
3416 /* Great, first payload, we might graduate to OK! */
3418 /* We are up and running, all good. */
3419 break;
3420 }
3421
3422 decrypted_size = -1;
3423 if (CADET_TUNNEL_KEY_OK == t->estate)
3424 {
3425 /* We have well-established key material available,
3426 try that. (This is the common case.) */
3427 decrypted_size = t_ax_decrypt_and_validate (&t->ax,
3428 cbuf,
3429 msg,
3430 size);
3431 }
3432
3433 if ((-1 == decrypted_size) &&
3434 (NULL != t->unverified_ax))
3435 {
3436 /* We have un-authenticated KX material available. We should try
3437 this as a back-up option, in case the sender crashed and
3438 switched keys. */
3439 decrypted_size = t_ax_decrypt_and_validate (t->unverified_ax,
3440 cbuf,
3441 msg,
3442 size);
3443 if (-1 != decrypted_size)
3444 {
3445 /* It worked! Treat this as authentication of the AX data! */
3446 cleanup_ax (&t->ax);
3447 t->ax = *t->unverified_ax;
3448 GNUNET_free (t->unverified_ax);
3449 t->unverified_ax = NULL;
3450 }
3451 if (CADET_TUNNEL_KEY_AX_AUTH_SENT == t->estate)
3452 {
3453 /* First time it worked, move tunnel into production! */
3456 if (NULL != t->send_task)
3457 GNUNET_SCHEDULER_cancel (t->send_task);
3459 t);
3460 }
3461 }
3462 if (NULL != t->unverified_ax)
3463 {
3464 /* We had unverified KX material that was useless; so increment
3465 counter and eventually move to ignore it. Note that we even do
3466 this increment if we successfully decrypted with the old KX
3467 material and thus didn't even both with the new one. This is
3468 the ideal case, as a malicious injection of bogus KX data
3469 basically only causes us to increment a counter a few times. */t->unverified_attempts++;
3471 "Failed to decrypt message with unverified KX data %u times\n",
3472 t->unverified_attempts);
3473 if (t->unverified_attempts > MAX_UNVERIFIED_ATTEMPTS)
3474 {
3475 cleanup_ax (t->unverified_ax);
3476 GNUNET_free (t->unverified_ax);
3477 t->unverified_ax = NULL;
3478 }
3479 }
3480
3481 if (-1 == decrypted_size)
3482 {
3483 /* Decryption failed for good, complain. */
3485 "%s failed to decrypt and validate encrypted data, retrying KX\n",
3486 GCT_2s (t));
3488 "# unable to decrypt",
3489 1,
3490 GNUNET_NO);
3491 if (NULL != t->kx_task)
3492 {
3493 GNUNET_SCHEDULER_cancel (t->kx_task);
3494 t->kx_task = NULL;
3495 }
3496 send_kx (t,
3497 ct,
3498 &t->ax);
3499 return;
3500 }
3502 "# decrypted bytes",
3503 decrypted_size,
3504 GNUNET_NO);
3505
3506 /* The MST will ultimately call #handle_decrypted() on each message. */
3507 t->current_ct = ct;
3510 cbuf,
3511 decrypted_size,
3512 GNUNET_YES,
3513 GNUNET_NO));
3514 t->current_ct = NULL;
3515}
static void cleanup_ax(struct CadetTunnelAxolotl *ax)
Cleanup state used by ax.
#define MAX_UNVERIFIED_ATTEMPTS
How often do we try to decrypt payload with unverified key material? Used to limit CPU increase upon ...
void GCT_change_estate(struct CadetTunnel *t, enum CadetTunnelEState state)
Change the tunnel encryption state.
static void send_kx(struct CadetTunnel *t, struct CadetTConnection *ct, struct CadetTunnelAxolotl *ax)
Send a KX message.
static ssize_t t_ax_decrypt_and_validate(struct CadetTunnelAxolotl *ax, void *dst, const struct GNUNET_CADET_TunnelEncryptedMessage *src, size_t size)
Decrypt and verify data with the appropriate tunnel key and verify that the data has not been altered...
#define GNUNET_ALIGN
gcc-ism to force alignment; we use this to align char-arrays that may then be cast to 'struct's.
@ GNUNET_ERROR_TYPE_WARNING
enum GNUNET_GenericReturnValue GNUNET_MST_from_buffer(struct GNUNET_MessageStreamTokenizer *mst, const char *buf, size_t size, int purge, int one_shot)
Add incoming data to the receive buffer and call the callback for all complete messages.
Definition mst.c:101
static unsigned int size
Size of the "table".
Definition peer.c:68

References CADET_TUNNEL_KEY_AX_AUTH_SENT, CADET_TUNNEL_KEY_AX_RECV, CADET_TUNNEL_KEY_AX_SENT, CADET_TUNNEL_KEY_AX_SENT_AND_RECV, CADET_TUNNEL_KEY_OK, CADET_TUNNEL_KEY_UNINITIALIZED, cleanup_ax(), GCT_2s(), GCT_change_estate(), GNUNET_ALIGN, GNUNET_break_op, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_WARNING, GNUNET_free, GNUNET_MST_from_buffer(), GNUNET_NO, GNUNET_OK, GNUNET_SCHEDULER_add_now(), GNUNET_SCHEDULER_cancel(), GNUNET_STATISTICS_update(), GNUNET_YES, LOG, MAX_UNVERIFIED_ATTEMPTS, msg, send_kx(), send_kx_auth(), GNUNET_MessageHeader::size, size, stats, t, CadetTConnection::t, t_ax_decrypt_and_validate(), and trigger_transmissions().

Referenced by GCC_handle_encrypted().

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

◆ GCT_debug()

void GCT_debug ( const struct CadetTunnel t,
enum GNUNET_ErrorType  level 
)

Log all possible info about the tunnel state.

Parameters
tTunnel to debug.
levelDebug level to use.

Definition at line 3734 of file gnunet-service-cadet_tunnels.c.

3736{
3737#if ! defined(GNUNET_CULL_LOGGING)
3738 struct CadetTConnection *iter_c;
3739 int do_log;
3740
3742 "cadet-tun",
3743 __FILE__, __FUNCTION__, __LINE__);
3744 if (0 == do_log)
3745 return;
3746
3747 LOG2 (level,
3748 "TTT TUNNEL TOWARDS %s in estate %s tq_len: %u #cons: %u\n",
3749 GCT_2s (t),
3750 estate2s (t->estate),
3751 t->tq_len,
3753 LOG2 (level,
3754 "TTT channels:\n");
3757 &level);
3758 LOG2 (level,
3759 "TTT connections:\n");
3760 for (iter_c = t->connection_ready_head; NULL != iter_c; iter_c = iter_c->next)
3761 GCC_debug (iter_c->cc,
3762 level);
3763 for (iter_c = t->connection_busy_head; NULL != iter_c; iter_c = iter_c->next)
3764 GCC_debug (iter_c->cc,
3765 level);
3766
3767 LOG2 (level,
3768 "TTT TUNNEL END\n");
3769#endif
3770}
void GCC_debug(struct CadetConnection *cc, enum GNUNET_ErrorType level)
Log connection info.
static int debug_channel(void *cls, uint32_t key, void *value)
Call GCCH_debug() on a channel.
unsigned int GCT_count_any_connections(const struct CadetTunnel *t)
Counts the number of connections created for a tunnel, including busy connections.
#define LOG2(level,...)
int GNUNET_get_log_call_status(int caller_level, const char *comp, const char *file, const char *function, int line)
Decides whether a particular logging call should or should not be allowed to be made.
@ GNUNET_ERROR_TYPE_BULK

References CadetTConnection::cc, debug_channel(), estate2s(), GCC_debug(), GCT_2s(), GCT_count_any_connections(), GNUNET_CONTAINER_multihashmap32_iterate(), GNUNET_ERROR_TYPE_BULK, GNUNET_get_log_call_status(), LOG2, CadetTConnection::next, and t.

Here is the call graph for this function: