GNUnet 0.21.1
messenger_api_util.h File Reference
Include dependency graph for messenger_api_util.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void delayed_disconnect_channel (struct GNUNET_CADET_Channel *channel)
 Starts an urgent task to close a CADET channel asynchronously. More...
 
enum GNUNET_GenericReturnValue generate_free_member_id (struct GNUNET_ShortHashCode *id, const struct GNUNET_CONTAINER_MultiShortmap *members)
 Tries to generate an unused member id and store it into the id parameter. More...
 
const struct GNUNET_CRYPTO_PrivateKeyget_anonymous_private_key ()
 Returns the private identity key of GNUNET_IDENTITY_ego_get_anonymous() without recalculating it every time. More...
 
const struct GNUNET_CRYPTO_PublicKeyget_anonymous_public_key ()
 Returns the public identity key of GNUNET_IDENTITY_ego_get_anonymous() without recalculating it every time. More...
 
void convert_messenger_key_to_port (const struct GNUNET_HashCode *key, struct GNUNET_HashCode *port)
 Converts a Messenger service key of a room to the specific port which gets used for the CADET channels. More...
 
void convert_peer_identity_to_id (const struct GNUNET_PeerIdentity *identity, struct GNUNET_ShortHashCode *id)
 Converts a peers identity to a short hash code which can be used as id to refer to a peer via sender id as attached in messages. More...
 

Function Documentation

◆ delayed_disconnect_channel()

void delayed_disconnect_channel ( struct GNUNET_CADET_Channel channel)

Starts an urgent task to close a CADET channel asynchronously.

Parameters
[in,out]channelChannel

Definition at line 42 of file messenger_api_util.c.

43{
44 GNUNET_assert (channel);
45
48 callback_close_channel, channel);
49}
@ GNUNET_SCHEDULER_PRIORITY_URGENT
Run with priority for urgent tasks.
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed_with_priority(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition: scheduler.c:1208
struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_zero_(void)
Return relative time of 0ms.
Definition: time.c:133
static void callback_close_channel(void *cls)

References callback_close_channel(), GNUNET_assert, GNUNET_SCHEDULER_add_delayed_with_priority(), GNUNET_SCHEDULER_PRIORITY_URGENT, and GNUNET_TIME_relative_get_zero_().

Referenced by bind_tunnel(), callback_room_connect(), and disconnect_tunnel().

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

◆ generate_free_member_id()

enum GNUNET_GenericReturnValue generate_free_member_id ( struct GNUNET_ShortHashCode id,
const struct GNUNET_CONTAINER_MultiShortmap members 
)

Tries to generate an unused member id and store it into the id parameter.

A map containing all currently used member ids is used to check against.

Parameters
[out]idNew member id
[in]membersMap of member ids
Returns
GNUNET_YES on success, GNUNET_NO on failure

Definition at line 53 of file messenger_api_util.c.

55{
56 GNUNET_assert (id);
57
58 size_t counter = 1 + (members ? GNUNET_CONTAINER_multishortmap_size (
59 members) : 0);
60
61 do
62 {
65
67 members, id)))
68 counter--;
69 else
70 break;
71 }
72 while (counter > 0);
73
74 if (counter)
75 return GNUNET_YES;
76
77 return GNUNET_NO;
78}
void GNUNET_CRYPTO_random_block(enum GNUNET_CRYPTO_Quality mode, void *buffer, size_t length)
Fill block with a random values.
@ GNUNET_CRYPTO_QUALITY_STRONG
High-quality operations are desired.
unsigned int GNUNET_CONTAINER_multishortmap_size(const struct GNUNET_CONTAINER_MultiShortmap *map)
Get the number of key-value pairs in the map.
int GNUNET_CONTAINER_multishortmap_contains(const struct GNUNET_CONTAINER_MultiShortmap *map, const struct GNUNET_ShortHashCode *key)
Check if the map contains any value under the given key (including values that are NULL).
@ GNUNET_YES
@ GNUNET_NO
A 256-bit hashcode.

References GNUNET_assert, GNUNET_CONTAINER_multishortmap_contains(), GNUNET_CONTAINER_multishortmap_size(), GNUNET_CRYPTO_QUALITY_STRONG, GNUNET_CRYPTO_random_block(), GNUNET_NO, and GNUNET_YES.

Referenced by create_handle_member_id(), create_member(), and solve_srv_room_member_collisions().

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

◆ get_anonymous_private_key()

const struct GNUNET_CRYPTO_PrivateKey * get_anonymous_private_key ( )

Returns the private identity key of GNUNET_IDENTITY_ego_get_anonymous() without recalculating it every time.

Returns
anonymous private key

Definition at line 82 of file messenger_api_util.c.

83{
86}
const struct GNUNET_CRYPTO_PrivateKey * GNUNET_IDENTITY_ego_get_private_key(const struct GNUNET_IDENTITY_Ego *ego)
Obtain the ECC key associated with a ego.
Definition: identity_api.c:517
struct GNUNET_IDENTITY_Ego * GNUNET_IDENTITY_ego_get_anonymous(void)
Obtain the ego representing 'anonymous' users.
Definition: identity_api.c:157
Handle for an ego.
Definition: identity.h:37

References GNUNET_IDENTITY_ego_get_anonymous(), and GNUNET_IDENTITY_ego_get_private_key().

Referenced by get_handle_key().

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

◆ get_anonymous_public_key()

const struct GNUNET_CRYPTO_PublicKey * get_anonymous_public_key ( )

Returns the public identity key of GNUNET_IDENTITY_ego_get_anonymous() without recalculating it every time.

Returns
anonymous public key

Definition at line 90 of file messenger_api_util.c.

91{
92 static struct GNUNET_CRYPTO_PublicKey public_key;
93 static struct GNUNET_IDENTITY_Ego *ego = NULL;
94
95 if (! ego)
96 {
98 GNUNET_IDENTITY_ego_get_public_key (ego, &public_key);
99 }
100
101 return &public_key;
102}
void GNUNET_IDENTITY_ego_get_public_key(struct GNUNET_IDENTITY_Ego *ego, struct GNUNET_CRYPTO_PublicKey *pk)
Get the identifier (public key) of an ego.
Definition: identity_api.c:529
An identity key as per LSD0001.

References GNUNET_IDENTITY_ego_get_anonymous(), and GNUNET_IDENTITY_ego_get_public_key().

Referenced by get_handle_pubkey(), get_non_anonymous_key(), initialize_service_handle(), and select_store_contact_map().

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

◆ convert_messenger_key_to_port()

void convert_messenger_key_to_port ( const struct GNUNET_HashCode key,
struct GNUNET_HashCode port 
)

Converts a Messenger service key of a room to the specific port which gets used for the CADET channels.

The port includes upper bits of the GNUNET_MESSENGER_VERSION to reduce the chance of incompatible connections.

Parameters
[in]keyMessenger service room key
[out]portCADET service port

Definition at line 106 of file messenger_api_util.c.

108{
109 static uint32_t version_value = 0;
110 static struct GNUNET_HashCode version;
111
112 if (! version_value)
113 {
114 version_value = (uint32_t) (GNUNET_MESSENGER_VERSION);
115 version_value = ((version_value >> 16) & 0xFFFF);
116 version_value = GNUNET_htole32 (version_value);
117 GNUNET_CRYPTO_hash (&version_value, sizeof(version_value), &version);
118 }
119
120 GNUNET_CRYPTO_hash_sum (key, &version, port);
121}
static uint16_t port
Port number.
Definition: gnunet-bcd.c:147
struct GNUNET_HashCode key
The key used in the DHT.
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition: crypto_hash.c:41
void GNUNET_CRYPTO_hash_sum(const struct GNUNET_HashCode *a, const struct GNUNET_HashCode *delta, struct GNUNET_HashCode *result)
compute result = a + delta
Definition: crypto_hash.c:123
#define GNUNET_htole32(x)
#define GNUNET_MESSENGER_VERSION
Version number of GNUnet Messenger API.
A 512-bit hashcode.

References GNUNET_CRYPTO_hash(), GNUNET_CRYPTO_hash_sum(), GNUNET_htole32, GNUNET_MESSENGER_VERSION, key, and port.

Referenced by connect_tunnel(), and open_srv_room().

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

◆ convert_peer_identity_to_id()

void convert_peer_identity_to_id ( const struct GNUNET_PeerIdentity identity,
struct GNUNET_ShortHashCode id 
)

Converts a peers identity to a short hash code which can be used as id to refer to a peer via sender id as attached in messages.

Parameters
[in]identityPeer identity
[out]idShort peer id

Definition at line 125 of file messenger_api_util.c.

127{
128 GNUNET_memcpy (id, identity, sizeof(struct GNUNET_ShortHashCode));
129}
static struct GNUNET_IDENTITY_Handle * identity
Which namespace do we publish to? NULL if we do not publish to a namespace.
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.

References GNUNET_memcpy, and identity.

Referenced by get_store_peer_of(), load_peer_store(), pack_srv_room_message(), and update_store_peer().

Here is the caller graph for this function: