GNUnet  0.20.0
messenger_api.c File Reference

messenger api: client implementation of GNUnet MESSENGER service More...

Include dependency graph for messenger_api.c:

Go to the source code of this file.

Data Structures

struct  GNUNET_MESSENGER_RoomFind
 

Functions

const char * GNUNET_MESSENGER_name_of_kind (enum GNUNET_MESSENGER_MessageKind kind)
 Get the name of a message kind. More...
 
static int check_get_name (void *cls, const struct GNUNET_MESSENGER_NameMessage *msg)
 
static void handle_get_name (void *cls, const struct GNUNET_MESSENGER_NameMessage *msg)
 
static int check_get_key (void *cls, const struct GNUNET_MESSENGER_KeyMessage *msg)
 
static void handle_get_key (void *cls, const struct GNUNET_MESSENGER_KeyMessage *msg)
 
static void handle_member_id (void *cls, const struct GNUNET_MESSENGER_MemberMessage *msg)
 
static void handle_room_open (void *cls, const struct GNUNET_MESSENGER_RoomMessage *msg)
 
static void handle_room_entry (void *cls, const struct GNUNET_MESSENGER_RoomMessage *msg)
 
static void handle_room_close (void *cls, const struct GNUNET_MESSENGER_RoomMessage *msg)
 
static int check_recv_message (void *cls, const struct GNUNET_MESSENGER_RecvMessage *msg)
 
static void handle_recv_message (void *cls, const struct GNUNET_MESSENGER_RecvMessage *msg)
 
static void reconnect (struct GNUNET_MESSENGER_Handle *handle)
 
static void send_open_room (struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room)
 
static void send_enter_room (struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_PeerIdentity *door)
 
static void send_close_room (struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room)
 
static int iterate_reset_room (void *cls, const struct GNUNET_HashCode *key, void *value)
 
static void callback_reconnect (void *cls)
 
static int iterate_close_room (void *cls, const struct GNUNET_HashCode *key, void *value)
 
static void callback_mq_error (void *cls, enum GNUNET_MQ_Error error)
 
struct GNUNET_MESSENGER_HandleGNUNET_MESSENGER_connect (const struct GNUNET_CONFIGURATION_Handle *cfg, const char *name, GNUNET_MESSENGER_IdentityCallback identity_callback, void *identity_cls, GNUNET_MESSENGER_MessageCallback msg_callback, void *msg_cls)
 Set up a handle for the messenger related functions and connects to all necessary services. More...
 
int GNUNET_MESSENGER_update (struct GNUNET_MESSENGER_Handle *handle)
 Update a handle of the messenger to use a different ego key and replace the old one with a newly generated one. More...
 
void GNUNET_MESSENGER_disconnect (struct GNUNET_MESSENGER_Handle *handle)
 Disconnect all of the messengers used services and clears up its used memory. More...
 
const char * GNUNET_MESSENGER_get_name (const struct GNUNET_MESSENGER_Handle *handle)
 Get the name (if specified, otherwise NULL) used by the messenger. More...
 
int GNUNET_MESSENGER_set_name (struct GNUNET_MESSENGER_Handle *handle, const char *name)
 Set the name for the messenger. More...
 
static const struct GNUNET_IDENTITY_PublicKeyget_non_anonymous_key (const struct GNUNET_IDENTITY_PublicKey *public_key)
 
const struct GNUNET_IDENTITY_PublicKeyGNUNET_MESSENGER_get_key (const struct GNUNET_MESSENGER_Handle *handle)
 Get the public key used by the messenger or NULL if the anonymous key was used. More...
 
struct GNUNET_MESSENGER_RoomGNUNET_MESSENGER_open_room (struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key)
 Open a room to send and receive messages. More...
 
struct GNUNET_MESSENGER_RoomGNUNET_MESSENGER_enter_room (struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key)
 Enter a room to send and receive messages through a door opened using GNUNET_MESSENGER_open_room. More...
 
void GNUNET_MESSENGER_close_room (struct GNUNET_MESSENGER_Room *room)
 Close a room which was entered, opened or both in various order and variety. More...
 
static int iterate_find_room (void *cls, const struct GNUNET_HashCode *key, void *value)
 
int GNUNET_MESSENGER_find_rooms (const struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_MESSENGER_Contact *contact, GNUNET_MESSENGER_MemberCallback callback, void *cls)
 Searches for a specific contact in a given room and calls a selected callback with a given closure for each of them containing the contact as a member. More...
 
const struct GNUNET_HashCodeGNUNET_MESSENGER_room_get_key (const struct GNUNET_MESSENGER_Room *room)
 Get the key of a given room. More...
 
const struct GNUNET_MESSENGER_ContactGNUNET_MESSENGER_get_sender (const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_HashCode *hash)
 Get the contact of a member in a room which sent a specific message identified with a given hash. More...
 
const char * GNUNET_MESSENGER_contact_get_name (const struct GNUNET_MESSENGER_Contact *contact)
 Get the name used by the contact. More...
 
const struct GNUNET_IDENTITY_PublicKeyGNUNET_MESSENGER_contact_get_key (const struct GNUNET_MESSENGER_Contact *contact)
 Get the public key used by the contact or NULL if the anonymous key was used. More...
 
void GNUNET_MESSENGER_send_message (struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_MESSENGER_Contact *contact)
 Send a message into a room. More...
 
const struct GNUNET_MESSENGER_MessageGNUNET_MESSENGER_get_message (const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_HashCode *hash)
 Get the message in a room identified by its hash. More...
 
int GNUNET_MESSENGER_iterate_members (struct GNUNET_MESSENGER_Room *room, GNUNET_MESSENGER_MemberCallback callback, void *cls)
 Iterates through all members of a given room and calls a selected callback for each of them with a provided closure. More...
 

Detailed Description

messenger api: client implementation of GNUnet MESSENGER service

Author
Tobias Frisch

Definition in file messenger_api.c.

Function Documentation

◆ check_get_name()

static int check_get_name ( void *  cls,
const struct GNUNET_MESSENGER_NameMessage msg 
)
static

Definition at line 76 of file messenger_api.c.

78 {
80  return GNUNET_OK;
81 }
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
@ GNUNET_OK
#define GNUNET_MQ_check_zero_termination(m)
Insert code for a "check_" function that verifies that a given variable-length message received over ...

References GNUNET_MQ_check_zero_termination, GNUNET_OK, and msg.

◆ handle_get_name()

static void handle_get_name ( void *  cls,
const struct GNUNET_MESSENGER_NameMessage msg 
)
static

Definition at line 84 of file messenger_api.c.

86 {
87  struct GNUNET_MESSENGER_Handle *handle = cls;
88 
89  const char *name = ((const char*) msg) + sizeof(*msg);
90 
91  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Set name of handle: %s\n", name);
92 
93  set_handle_name (handle, strlen (name) > 0 ? name : NULL);
94 }
static struct GNUNET_DNS_Handle * handle
Handle to transport service.
#define GNUNET_log(kind,...)
@ GNUNET_ERROR_TYPE_DEBUG
void set_handle_name(struct GNUNET_MESSENGER_Handle *handle, const char *name)
Sets the name of a handle to a specific name.
const char * name

References GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, handle, msg, name, and set_handle_name().

Here is the call graph for this function:

◆ check_get_key()

static int check_get_key ( void *  cls,
const struct GNUNET_MESSENGER_KeyMessage msg 
)
static

Definition at line 97 of file messenger_api.c.

99 {
100  const uint16_t full_length = ntohs (msg->header.size);
101 
102  if (full_length < sizeof(*msg))
103  return GNUNET_NO;
104 
105  const uint16_t length = full_length - sizeof(*msg);
106  const char *buffer = ((const char*) msg) + sizeof(*msg);
107 
109  size_t read;
110  if (GNUNET_SYSERR ==
112  &pubkey, &read))
113  return GNUNET_NO;
114 
115  return GNUNET_OK;
116 }
static struct GNUNET_IDENTITY_PublicKey pubkey
Public key of the zone to look in.
enum GNUNET_GenericReturnValue GNUNET_IDENTITY_read_public_key_from_buffer(const void *buffer, size_t len, struct GNUNET_IDENTITY_PublicKey *key, size_t *kb_read)
Reads a GNUNET_IDENTITY_PublicKey from a compact buffer.
Definition: identity_api.c:865
@ GNUNET_NO
@ GNUNET_SYSERR
An identity key as per LSD0001.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.

References GNUNET_IDENTITY_read_public_key_from_buffer(), GNUNET_NO, GNUNET_OK, GNUNET_SYSERR, msg, pubkey, and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ handle_get_key()

static void handle_get_key ( void *  cls,
const struct GNUNET_MESSENGER_KeyMessage msg 
)
static

Definition at line 119 of file messenger_api.c.

121 {
122  struct GNUNET_MESSENGER_Handle *handle = cls;
123 
124  const uint16_t length = ntohs (msg->header.size) - sizeof(*msg);
125  const char *buffer = ((const char*) msg) + sizeof(*msg);
126 
128  size_t read;
129  if (GNUNET_SYSERR ==
131  &pubkey, &read))
132  return;
133 
135  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Set key of handle: %s\n", str);
136  GNUNET_free(str);
137 
139 
140  if (handle->identity_callback)
141  handle->identity_callback (handle->identity_cls, handle);
142 }
char * GNUNET_IDENTITY_public_key_to_string(const struct GNUNET_IDENTITY_PublicKey *key)
Creates a (Base32) string representation of the public key.
#define GNUNET_free(ptr)
Wrapper around free.
void set_handle_key(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_IDENTITY_PublicKey *pubkey)
Sets the public key of a given handle to a specific public key.

References GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_IDENTITY_public_key_to_string(), GNUNET_IDENTITY_read_public_key_from_buffer(), GNUNET_log, GNUNET_SYSERR, handle, msg, pubkey, set_handle_key(), and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ handle_member_id()

static void handle_member_id ( void *  cls,
const struct GNUNET_MESSENGER_MemberMessage msg 
)
static

Definition at line 145 of file messenger_api.c.

147 {
148  struct GNUNET_MESSENGER_Handle *handle = cls;
149 
150  const struct GNUNET_HashCode *key = &(msg->key);
151  const struct GNUNET_ShortHashCode *id = &(msg->id);
152 
153  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Set id of handle in room: %s\n", GNUNET_h2s (key));
154 
156 
157  if (room)
158  {
159  if (!room->contact_id)
161 
162  GNUNET_memcpy(room->contact_id, id, sizeof(*id));
163  }
164 }
struct GNUNET_HashCode key
The key used in the DHT.
void * GNUNET_CONTAINER_multihashmap_get(const struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key)
Given a key find a value in the map matching the key.
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
const char * GNUNET_h2s(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
#define GNUNET_new(type)
Allocate a struct or union of the given type.
A 512-bit hashcode.
struct GNUNET_ShortHashCode * contact_id
A 256-bit hashcode.

References GNUNET_MESSENGER_Room::contact_id, GNUNET_CONTAINER_multihashmap_get(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, GNUNET_memcpy, GNUNET_new, handle, key, and msg.

Here is the call graph for this function:

◆ handle_room_open()

static void handle_room_open ( void *  cls,
const struct GNUNET_MESSENGER_RoomMessage msg 
)
static

Definition at line 167 of file messenger_api.c.

169 {
170  struct GNUNET_MESSENGER_Handle *handle = cls;
171 
172  const struct GNUNET_HashCode *key = &(msg->key);
173 
174  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Opened room: %s\n", GNUNET_h2s (key));
175 
177 }
void open_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key)
Marks a room known to a handle identified by a given key as open.

References GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, handle, key, msg, and open_handle_room().

Here is the call graph for this function:

◆ handle_room_entry()

static void handle_room_entry ( void *  cls,
const struct GNUNET_MESSENGER_RoomMessage msg 
)
static

Definition at line 180 of file messenger_api.c.

182 {
183  struct GNUNET_MESSENGER_Handle *handle = cls;
184 
185  const struct GNUNET_PeerIdentity *door = &(msg->door);
186  const struct GNUNET_HashCode *key = &(msg->key);
187 
188  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Entered room: %s\n", GNUNET_h2s (key));
189 
191 }
void entry_handle_room_at(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_PeerIdentity *door, const struct GNUNET_HashCode *key)
Adds a tunnel for a room known to a handle identified by a given key to a list of opened connections.
The identity of the host (wraps the signing key of the peer).

References entry_handle_room_at(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, handle, key, and msg.

Here is the call graph for this function:

◆ handle_room_close()

static void handle_room_close ( void *  cls,
const struct GNUNET_MESSENGER_RoomMessage msg 
)
static

Definition at line 194 of file messenger_api.c.

196 {
197  struct GNUNET_MESSENGER_Handle *handle = cls;
198 
199  const struct GNUNET_HashCode *key = &(msg->key);
200 
201  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Closed room: %s\n", GNUNET_h2s (key));
202 
204 }
void close_handle_room(struct GNUNET_MESSENGER_Handle *handle, const struct GNUNET_HashCode *key)
Destroys and so implicitly closes a room known to a handle identified by a given key.

References close_handle_room(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_log, handle, key, and msg.

Here is the call graph for this function:

◆ check_recv_message()

static int check_recv_message ( void *  cls,
const struct GNUNET_MESSENGER_RecvMessage msg 
)
static

Definition at line 207 of file messenger_api.c.

209 {
210  const uint16_t full_length = ntohs (msg->header.size);
211 
212  if (full_length < sizeof(*msg))
213  return GNUNET_NO;
214 
215  const uint16_t length = full_length - sizeof(*msg);
216  const char *buffer = ((const char*) msg) + sizeof(*msg);
217 
218  struct GNUNET_MESSENGER_Message message;
219 
221  return GNUNET_NO;
222 
223  if (GNUNET_YES != decode_message (&message, length, buffer, GNUNET_YES, NULL))
224  return GNUNET_NO;
225 
226  cleanup_message(&message);
227  return GNUNET_OK;
228 }
@ GNUNET_YES
@ GNUNET_MESSENGER_KIND_UNKNOWN
The unknown kind.
int decode_message(struct GNUNET_MESSENGER_Message *message, uint16_t length, const char *buffer, int include_header, uint16_t *padding)
Decodes a message from a given buffer of a maximal length in bytes.
uint16_t get_message_kind_size(enum GNUNET_MESSENGER_MessageKind kind, int include_header)
Returns the minimal size in bytes to encode a message of a specific kind.
void cleanup_message(struct GNUNET_MESSENGER_Message *message)
Frees the messages body memory.

References cleanup_message(), decode_message(), get_message_kind_size(), GNUNET_MESSENGER_KIND_UNKNOWN, GNUNET_NO, GNUNET_OK, GNUNET_YES, msg, and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ handle_recv_message()

static void handle_recv_message ( void *  cls,
const struct GNUNET_MESSENGER_RecvMessage msg 
)
static

Definition at line 231 of file messenger_api.c.

233 {
234  struct GNUNET_MESSENGER_Handle *handle = cls;
235 
236  const struct GNUNET_HashCode *key = &(msg->key);
237  const struct GNUNET_HashCode *sender = &(msg->sender);
238  const struct GNUNET_HashCode *context = &(msg->context);
239  const struct GNUNET_HashCode *hash = &(msg->hash);
240  const enum GNUNET_MESSENGER_MessageFlags flags = (
241  (enum GNUNET_MESSENGER_MessageFlags) (msg->flags)
242  );
243 
244  const uint16_t length = ntohs (msg->header.size) - sizeof(*msg);
245  const char *buffer = ((const char*) msg) + sizeof(*msg);
246 
247  struct GNUNET_MESSENGER_Message message;
248  decode_message (&message, length, buffer, GNUNET_YES, NULL);
249 
250  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Receiving message: %s\n", GNUNET_MESSENGER_name_of_kind (message.header.kind));
251 
253 
254  if (room)
255  {
257 
258  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Raw contact from sender and context: (%s : %s)\n",
260 
262  store, context, sender
263  );
264 
265  contact = handle_room_message (room, contact, &message, hash);
266 
267  const struct GNUNET_MESSENGER_Message *stored_message = get_room_message(room, hash);
268 
269  if (handle->msg_callback)
270  handle->msg_callback (handle->msg_cls, room, contact, stored_message, hash, flags);
271  }
272  else
273  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Unknown room for this client: %s\n", GNUNET_h2s (key));
274 
275  cleanup_message(&message);
276 }
static pa_context * context
Pulseaudio context.
const char * GNUNET_h2s_full(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
GNUNET_MESSENGER_MessageFlags
Enum for the different supported flags used by message handling Compatible flags can be OR'ed togethe...
const char * GNUNET_MESSENGER_name_of_kind(enum GNUNET_MESSENGER_MessageKind kind)
Get the name of a message kind.
Definition: messenger_api.c:36
struct GNUNET_MESSENGER_Contact * get_store_contact_raw(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *key_hash)
Returns a contact using the hash of a specific public key.
struct GNUNET_MESSENGER_ContactStore * get_handle_contact_store(struct GNUNET_MESSENGER_Handle *handle)
Returns the used contact store of a given handle.
struct GNUNET_MESSENGER_Contact * handle_room_message(struct GNUNET_MESSENGER_Room *room, struct GNUNET_MESSENGER_Contact *sender, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a message with a given hash in a room for the client API to update members and its informatio...
const struct GNUNET_MESSENGER_Message * get_room_message(const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_HashCode *hash)
Returns a message locally stored from a map for a given hash in a room.

References cleanup_message(), context, decode_message(), get_handle_contact_store(), get_room_message(), get_store_contact_raw(), GNUNET_CONTAINER_multihashmap_get(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_h2s(), GNUNET_h2s_full(), GNUNET_log, GNUNET_MESSENGER_name_of_kind(), GNUNET_YES, handle, handle_room_message(), GNUNET_MESSENGER_Message::header, key, GNUNET_MESSENGER_MessageHeader::kind, msg, and GNUNET_MessageHeader::size.

Here is the call graph for this function:

◆ reconnect()

static void reconnect ( struct GNUNET_MESSENGER_Handle handle)
static

Definition at line 393 of file messenger_api.c.

394 {
395  const struct GNUNET_MQ_MessageHandler handlers[] =
396  {
400  ),
404  ),
406  member_id,
409  ),
411  room_open,
414  ),
416  room_entry,
419  ),
421  room_close,
424  ),
426  recv_message,
429  ),
431  };
432 
434 }
static enum GNUNET_GenericReturnValue recv_message(void *cls, const struct GNUNET_MessageHeader *msg)
We have received a full message, pass to the MQ dispatcher.
Definition: client.c:335
static struct GNUNET_CADET_MessageHandler handlers[]
Handlers, for diverse services.
struct GNUNET_MQ_Handle * GNUNET_CLIENT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *service_name, const struct GNUNET_MQ_MessageHandler *handlers, GNUNET_MQ_ErrorHandler error_handler, void *error_handler_cls)
Create a message queue to connect to a GNUnet service.
Definition: client.c:1057
#define GNUNET_MESSENGER_SERVICE_NAME
Identifier of GNUnet MESSENGER Service.
#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_MESSENGER_ROOM_OPEN
#define GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_RECV_MESSAGE
#define GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_GET_NAME
#define GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_GET_KEY
#define GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_CLOSE
#define GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_MEMBER_ID
#define GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_ENTRY
static void callback_mq_error(void *cls, enum GNUNET_MQ_Error error)
const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration to use.
Definition: dns_api.c:66
struct GNUNET_MQ_Handle * mq
Connection to DNS service, or NULL.
Definition: dns_api.c:61
Message to receive the current public key of a handle.
Message to receive the current member id of a handle in room.
Message to receive the current name of a handle.
Message to receive something from a room.
General message to confirm interaction with a room.
Message handler for a specific message type.
static char * get_key(const char *line)
Every line in the topology configuration starts with a string indicating which kind of information wi...
Definition: testing.c:1761

References callback_mq_error(), GNUNET_DNS_Handle::cfg, get_key(), GNUNET_CLIENT_connect(), GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_GET_KEY, GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_GET_NAME, GNUNET_MESSAGE_TYPE_MESSENGER_CONNECTION_MEMBER_ID, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_CLOSE, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_ENTRY, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_OPEN, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_RECV_MESSAGE, GNUNET_MESSENGER_SERVICE_NAME, GNUNET_MQ_handler_end, GNUNET_MQ_hd_fixed_size, GNUNET_MQ_hd_var_size, handle, handlers, GNUNET_DNS_Handle::mq, and recv_message().

Referenced by callback_reconnect(), and GNUNET_MESSENGER_connect().

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

◆ send_open_room()

static void send_open_room ( struct GNUNET_MESSENGER_Handle handle,
struct GNUNET_MESSENGER_Room room 
)
static

Definition at line 282 of file messenger_api.c.

284 {
286  struct GNUNET_MQ_Envelope *env;
287 
289  GNUNET_memcpy(&(msg->key), &(room->key), sizeof(msg->key));
291 }
struct GNUNET_MQ_Envelope * env
Definition: 005.c:1
void GNUNET_MQ_send(struct GNUNET_MQ_Handle *mq, struct GNUNET_MQ_Envelope *ev)
Send a message with the given message queue.
Definition: mq.c:304
#define GNUNET_MQ_msg(mvar, type)
Allocate a GNUNET_MQ_Envelope.
Definition: gnunet_mq_lib.h:78
struct GNUNET_HashCode key

References env, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_OPEN, GNUNET_MQ_msg, GNUNET_MQ_send(), handle, GNUNET_MESSENGER_Room::key, GNUNET_DNS_Handle::mq, and msg.

Referenced by GNUNET_MESSENGER_open_room(), and iterate_reset_room().

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

◆ send_enter_room()

static void send_enter_room ( struct GNUNET_MESSENGER_Handle handle,
struct GNUNET_MESSENGER_Room room,
const struct GNUNET_PeerIdentity door 
)
static

Definition at line 294 of file messenger_api.c.

297 {
299  struct GNUNET_MQ_Envelope *env;
300 
302  GNUNET_memcpy(&(msg->door), door, sizeof(*door));
303  GNUNET_memcpy(&(msg->key), &(room->key), sizeof(msg->key));
305 }

References env, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_ENTRY, GNUNET_MQ_msg, GNUNET_MQ_send(), handle, GNUNET_MESSENGER_Room::key, GNUNET_DNS_Handle::mq, and msg.

Referenced by GNUNET_MESSENGER_enter_room(), and iterate_reset_room().

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

◆ send_close_room()

static void send_close_room ( struct GNUNET_MESSENGER_Handle handle,
struct GNUNET_MESSENGER_Room room 
)
static

Definition at line 308 of file messenger_api.c.

310 {
312  struct GNUNET_MQ_Envelope *env;
313 
315  GNUNET_memcpy(&(msg->key), &(room->key), sizeof(msg->key));
317 }

References env, GNUNET_memcpy, GNUNET_MESSAGE_TYPE_MESSENGER_ROOM_CLOSE, GNUNET_MQ_msg, GNUNET_MQ_send(), handle, GNUNET_MESSENGER_Room::key, GNUNET_DNS_Handle::mq, and msg.

Referenced by GNUNET_MESSENGER_close_room(), and iterate_close_room().

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

◆ iterate_reset_room()

static int iterate_reset_room ( void *  cls,
const struct GNUNET_HashCode key,
void *  value 
)
static

Definition at line 320 of file messenger_api.c.

323 {
324  struct GNUNET_MESSENGER_Handle *handle = cls;
325  struct GNUNET_MESSENGER_Room *room = value;
326 
327  if (GNUNET_YES == room->opened)
328  send_open_room (handle, room);
329 
330  struct GNUNET_MESSENGER_ListTunnel *entry = room->entries.head;
331 
332  struct GNUNET_PeerIdentity door;
333 
334  while (entry)
335  {
336  GNUNET_PEER_resolve (entry->peer, &door);
337 
338  send_enter_room (handle, room, &door);
339 
340  entry = entry->next;
341  }
342 
343  return GNUNET_YES;
344 }
static char * value
Value of the record to add/remove.
void GNUNET_PEER_resolve(GNUNET_PEER_Id id, struct GNUNET_PeerIdentity *pid)
Convert an interned PID to a normal peer identity.
Definition: peer.c:220
static void send_enter_room(struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room, const struct GNUNET_PeerIdentity *door)
static void send_open_room(struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room)
struct GNUNET_MESSENGER_ListTunnel * next
struct GNUNET_MESSENGER_ListTunnel * head
struct GNUNET_MESSENGER_ListTunnels entries

References GNUNET_MESSENGER_Room::entries, GNUNET_PEER_resolve(), GNUNET_YES, handle, GNUNET_MESSENGER_ListTunnels::head, GNUNET_MESSENGER_ListTunnel::next, GNUNET_MESSENGER_Room::opened, GNUNET_MESSENGER_ListTunnel::peer, send_enter_room(), send_open_room(), and value.

Referenced by callback_reconnect().

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

◆ callback_reconnect()

static void callback_reconnect ( void *  cls)
static

Definition at line 347 of file messenger_api.c.

348 {
349  struct GNUNET_MESSENGER_Handle *handle = cls;
350 
351  handle->reconnect_task = NULL;
352  handle->reconnect_time = GNUNET_TIME_STD_BACKOFF(handle->reconnect_time)
353  ;
354 
355  reconnect (handle);
356 
358 }
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_iterate(struct GNUNET_CONTAINER_MultiHashMap *map, GNUNET_CONTAINER_MultiHashMapIteratorCallback it, void *it_cls)
Iterate over all entries in the map.
#define GNUNET_TIME_STD_BACKOFF(r)
Perform our standard exponential back-off calculation, starting at 1 ms and then going by a factor of...
static int iterate_reset_room(void *cls, const struct GNUNET_HashCode *key, void *value)
static void reconnect(struct GNUNET_MESSENGER_Handle *handle)
struct GNUNET_SCHEDULER_Task * reconnect_task
Task to reconnect to the service.
Definition: dns_api.c:81

References GNUNET_CONTAINER_multihashmap_iterate(), GNUNET_TIME_STD_BACKOFF, handle, iterate_reset_room(), reconnect(), and GNUNET_DNS_Handle::reconnect_task.

Referenced by callback_mq_error().

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

◆ iterate_close_room()

static int iterate_close_room ( void *  cls,
const struct GNUNET_HashCode key,
void *  value 
)
static

Definition at line 361 of file messenger_api.c.

364 {
365  struct GNUNET_MESSENGER_Handle *handle = cls;
366  struct GNUNET_MESSENGER_Room *room = value;
367 
368  send_close_room (handle, room);
369 
370  return GNUNET_YES;
371 }
static void send_close_room(struct GNUNET_MESSENGER_Handle *handle, struct GNUNET_MESSENGER_Room *room)

References GNUNET_YES, handle, send_close_room(), and value.

Referenced by callback_mq_error().

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

◆ callback_mq_error()

static void callback_mq_error ( void *  cls,
enum GNUNET_MQ_Error  error 
)
static

Definition at line 374 of file messenger_api.c.

376 {
377  struct GNUNET_MESSENGER_Handle *handle = cls;
378 
379  GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "MQ_Error: %u\n", error);
380 
382 
383  if (handle->mq)
384  {
386  handle->mq = NULL;
387  }
388 
390 }
@ GNUNET_ERROR_TYPE_ERROR
void GNUNET_MQ_destroy(struct GNUNET_MQ_Handle *mq)
Destroy the message queue.
Definition: mq.c:683
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:1272
static void callback_reconnect(void *cls)
static int iterate_close_room(void *cls, const struct GNUNET_HashCode *key, void *value)

References callback_reconnect(), GNUNET_CONTAINER_multihashmap_iterate(), GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_MQ_destroy(), GNUNET_SCHEDULER_add_delayed(), handle, iterate_close_room(), GNUNET_DNS_Handle::mq, and GNUNET_DNS_Handle::reconnect_task.

Referenced by reconnect().

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

◆ get_non_anonymous_key()

static const struct GNUNET_IDENTITY_PublicKey* get_non_anonymous_key ( const struct GNUNET_IDENTITY_PublicKey public_key)
static

Definition at line 538 of file messenger_api.c.

539 {
540  if (0 == GNUNET_memcmp(public_key, get_anonymous_public_key()))
541  return NULL;
542 
543  return public_key;
544 }
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
const struct GNUNET_IDENTITY_PublicKey * get_anonymous_public_key()
Returns the public identity key of GNUNET_IDENTITY_ego_get_anonymous() without recalculating it every...

References get_anonymous_public_key(), and GNUNET_memcmp.

Referenced by GNUNET_MESSENGER_contact_get_key(), GNUNET_MESSENGER_get_key(), and GNUNET_MESSENGER_send_message().

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

◆ iterate_find_room()

static int iterate_find_room ( void *  cls,
const struct GNUNET_HashCode key,
void *  value 
)
static

Definition at line 624 of file messenger_api.c.

627 {
628  struct GNUNET_MESSENGER_RoomFind *find = cls;
629  struct GNUNET_MESSENGER_Room *room = value;
630 
631  if ((find->counter > 0) && ((!find->contact) || (GNUNET_YES == find_room_member(room, find->contact))))
632  {
633  find->counter--;
634 
635  if (!find->callback)
636  return GNUNET_YES;
637 
638  return find->callback(find->cls, room, find->contact);
639  }
640  else
641  return GNUNET_NO;
642 }
int find_room_member(const struct GNUNET_MESSENGER_Room *room, const struct GNUNET_MESSENGER_Contact *contact)
Checks through all members of a given room if a specific contact is found and returns a result depend...
GNUNET_MESSENGER_MemberCallback callback
const struct GNUNET_MESSENGER_Contact * contact

References GNUNET_MESSENGER_RoomFind::callback, GNUNET_MESSENGER_RoomFind::cls, GNUNET_MESSENGER_RoomFind::contact, GNUNET_MESSENGER_RoomFind::counter, find_room_member(), GNUNET_NO, GNUNET_YES, and value.

Referenced by GNUNET_MESSENGER_find_rooms().

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