GNUnet 0.27.0
 
Loading...
Searching...
No Matches
gnunet-service-messenger_message_send.c File Reference
Include dependency graph for gnunet-service-messenger_message_send.c:

Go to the source code of this file.

Data Structures

struct  GNUNET_MESSENGER_MemberNotify
 

Functions

static void notify_about_members (struct GNUNET_MESSENGER_MemberNotify *notify, struct GNUNET_MESSENGER_SrvMemberSession *session, enum GNUNET_GenericReturnValue check_permission)
 
static enum GNUNET_GenericReturnValue iterate_notify_about_members (void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
 
static enum GNUNET_GenericReturnValue iterate_epoch_session_members (void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
 
static enum GNUNET_GenericReturnValue traverse_epoch_message (struct GNUNET_MESSENGER_MemberNotify *notify, const struct GNUNET_HashCode *hash)
 
static enum GNUNET_GenericReturnValue traverse_epoch_session_message (struct GNUNET_MESSENGER_MemberNotify *notify, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Message *message)
 
void send_message_join (struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
 Handles a sent join message to ensure growth of the decentralized room structure.
 
void send_message_key (struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
 Handles a sent key message to ensure changes to the public key of the sending handle.
 
void send_message_peer (struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
 Handles a sent peer message to update the rooms peer message of this service.
 
void send_message_id (struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
 Handles a sent id message to update the handles member id in the room.
 
void send_message_request (struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
 Handles a sent request message to trigger the request operation for this service.
 

Function Documentation

◆ notify_about_members()

static void notify_about_members ( struct GNUNET_MESSENGER_MemberNotify notify,
struct GNUNET_MESSENGER_SrvMemberSession session,
enum GNUNET_GenericReturnValue  check_permission 
)
static

Definition at line 46 of file gnunet-service-messenger_message_send.c.

49{
50 struct GNUNET_MESSENGER_MessageStore *message_store;
51 struct GNUNET_MESSENGER_ListMessage *element;
52
53 GNUNET_assert ((notify) && (session));
54
55 if (session->prev)
56 notify_about_members (notify, session->prev, GNUNET_YES);
57
58 message_store = get_srv_room_message_store (notify->room);
59
61 "Notify through all of member session: %s\n",
63
64 for (element = session->messages.head; element; element = element->next)
65 {
66 const struct GNUNET_MESSENGER_Message *message;
67
68 if ((notify->map) &&
70 &(element->hash))
71 ))
72 continue;
73
74 if ((GNUNET_YES == check_permission) &&
76 &(element->hash),
77 GNUNET_NO)))
78 {
80 "Permission for notification of session message denied!\n");
81 continue;
82 }
83
84 if ((notify->map) &&
85 (GNUNET_OK != GNUNET_CONTAINER_multihashmap_put (notify->map, &(element
86 ->hash),
87 NULL,
89
90
91
93 "Notification of session message could be duplicated!\n");
94
95 message = get_store_message (message_store, &(element->hash));
96
97 if ((! message) || (GNUNET_YES == is_peer_message (message)))
98 {
100 "Session message for notification is invalid!\n");
101 continue;
102 }
103
104 {
105 struct GNUNET_MESSENGER_SenderSession sender;
106 const struct GNUNET_HashCode *epoch;
107
108 sender.member = session;
109 epoch = get_store_message_epoch (message_store, &(element->hash));
110
111 notify_srv_handle_message (notify->handle, notify->room, &sender, message,
112 &(element->hash), epoch, GNUNET_NO);
113 }
114 }
115}
void notify_srv_handle_message(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, const struct GNUNET_HashCode *epoch, enum GNUNET_GenericReturnValue recent)
Notifies the handle that a new message was received or sent.
const struct GNUNET_ShortHashCode * get_member_session_id(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns the member id of a given member session.
enum GNUNET_GenericReturnValue check_member_session_history(const struct GNUNET_MESSENGER_SrvMemberSession *session, const struct GNUNET_HashCode *hash, enum GNUNET_GenericReturnValue ownership)
Checks the history of a session for a specific message which is identified by its hash and if the own...
static void notify_about_members(struct GNUNET_MESSENGER_MemberNotify *notify, struct GNUNET_MESSENGER_SrvMemberSession *session, enum GNUNET_GenericReturnValue check_permission)
const struct GNUNET_HashCode * get_store_message_epoch(const struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Returns the epoch hash of a message from a message store matching a given hash.
const struct GNUNET_MESSENGER_Message * get_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Returns the message from a message store matching a given hash.
struct GNUNET_MESSENGER_MessageStore * get_srv_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used message store of a given room.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_contains(const struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key)
Check if the map contains any value under the given key (including values that are NULL).
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_put(struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key, void *value, enum GNUNET_CONTAINER_MultiHashMapOption opt)
Store a key-value pair in the map.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST
, ' bother checking if a value already exists (faster than GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE...
#define GNUNET_log(kind,...)
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
const char * GNUNET_sh2s(const struct GNUNET_ShortHashCode *shc)
Convert a short hash value to a string (for printing debug messages).
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_DEBUG
enum GNUNET_GenericReturnValue is_peer_message(const struct GNUNET_MESSENGER_Message *message)
Returns whether a specific kind of message can be sent by the service without usage of a clients priv...
A 512-bit hashcode.
struct GNUNET_MESSENGER_ListMessage * next
struct GNUNET_MESSENGER_ListMessage * head
struct GNUNET_CONTAINER_MultiHashMap * map
struct GNUNET_MESSENGER_SrvMemberSession * session
struct GNUNET_MESSENGER_SrvHandle * handle
struct GNUNET_MESSENGER_SrvMemberSession * prev

References check_member_session_history(), get_member_session_id(), get_srv_room_message_store(), get_store_message(), get_store_message_epoch(), GNUNET_assert, GNUNET_CONTAINER_multihashmap_contains(), GNUNET_CONTAINER_multihashmap_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_WARNING, GNUNET_log, GNUNET_NO, GNUNET_OK, GNUNET_sh2s(), GNUNET_YES, GNUNET_MESSENGER_MemberNotify::handle, GNUNET_MESSENGER_ListMessage::hash, GNUNET_MESSENGER_ListMessages::head, is_peer_message(), GNUNET_MESSENGER_MemberNotify::map, GNUNET_MESSENGER_SenderSession::member, GNUNET_MESSENGER_SrvMemberSession::messages, GNUNET_MESSENGER_ListMessage::next, notify_about_members(), notify_srv_handle_message(), GNUNET_MESSENGER_SrvMemberSession::prev, GNUNET_MESSENGER_MemberNotify::room, and GNUNET_MESSENGER_MemberNotify::session.

Referenced by iterate_notify_about_members(), and notify_about_members().

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

◆ iterate_notify_about_members()

static enum GNUNET_GenericReturnValue iterate_notify_about_members ( void *  cls,
const struct GNUNET_CRYPTO_BlindablePublicKey public_key,
struct GNUNET_MESSENGER_SrvMemberSession session 
)
static

Definition at line 119 of file gnunet-service-messenger_message_send.c.

123{
124 struct GNUNET_MESSENGER_MemberNotify *notify;
125
126 GNUNET_assert ((cls) && (session));
127
128 notify = cls;
129
130 if ((notify->session == session) ||
132 return GNUNET_YES;
133
134 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Notify about member session: %s\n",
136
138 return GNUNET_YES;
139}
enum GNUNET_GenericReturnValue is_member_session_completed(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns if the given member session has been completed.

References get_member_session_id(), GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_NO, GNUNET_sh2s(), GNUNET_YES, is_member_session_completed(), notify_about_members(), and GNUNET_MESSENGER_MemberNotify::session.

Referenced by send_message_join().

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

◆ iterate_epoch_session_members()

static enum GNUNET_GenericReturnValue iterate_epoch_session_members ( void *  cls,
const struct GNUNET_CRYPTO_BlindablePublicKey public_key,
struct GNUNET_MESSENGER_SrvMemberSession session 
)
static

Definition at line 143 of file gnunet-service-messenger_message_send.c.

148{
149 struct GNUNET_MESSENGER_MemberNotify *notify;
150 struct GNUNET_MESSENGER_MessageStore *message_store;
151 struct GNUNET_MESSENGER_ListMessage *element;
152
153 GNUNET_assert ((cls) && (session));
154
155 notify = cls;
156
157 if ((notify->session == session) ||
159 return GNUNET_YES;
160
161 message_store = get_srv_room_message_store (notify->room);
162
163 for (element = session->messages.head; element; element = element->next)
164 {
165 const struct GNUNET_MESSENGER_Message *message;
166
168 &(element->hash)))
169 continue;
170
171 message = get_store_message (message_store, &(element->hash));
172
173 if ((! message) ||
174 ((GNUNET_MESSENGER_KIND_JOIN != message->header.kind) &&
176 continue;
177
179 "Mark member session being labeled as important: %s\n",
181
182 GNUNET_CONTAINER_multihashmap_put (notify->map, &(element->hash), session,
184 }
185
186 return GNUNET_YES;
187}
@ GNUNET_MESSENGER_KIND_LEAVE
The leave kind.
@ GNUNET_MESSENGER_KIND_JOIN
The join kind.
enum GNUNET_MESSENGER_MessageKind kind
The kind of the message.
struct GNUNET_MESSENGER_MessageHeader header
Header.

References get_member_session_id(), get_srv_room_message_store(), get_store_message(), GNUNET_assert, GNUNET_CONTAINER_multihashmap_contains(), GNUNET_CONTAINER_multihashmap_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST, GNUNET_ERROR_TYPE_DEBUG, GNUNET_log, GNUNET_MESSENGER_KIND_JOIN, GNUNET_MESSENGER_KIND_LEAVE, GNUNET_sh2s(), GNUNET_YES, GNUNET_MESSENGER_ListMessage::hash, GNUNET_MESSENGER_ListMessages::head, GNUNET_MESSENGER_Message::header, is_member_session_completed(), GNUNET_MESSENGER_MessageHeader::kind, GNUNET_MESSENGER_MemberNotify::map, GNUNET_MESSENGER_SrvMemberSession::messages, GNUNET_MESSENGER_ListMessage::next, GNUNET_MESSENGER_MemberNotify::room, and GNUNET_MESSENGER_MemberNotify::session.

Referenced by send_message_join().

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

◆ traverse_epoch_message()

static enum GNUNET_GenericReturnValue traverse_epoch_message ( struct GNUNET_MESSENGER_MemberNotify notify,
const struct GNUNET_HashCode hash 
)
static

Definition at line 312 of file gnunet-service-messenger_message_send.c.

314{
315 struct GNUNET_MESSENGER_MessageStore *message_store;
316 const struct GNUNET_MESSENGER_Message *message;
317
318 GNUNET_assert ((notify) && (hash));
319
320 if (GNUNET_is_zero (hash))
321 return GNUNET_NO;
322
324 return GNUNET_NO;
325
326 message_store = get_srv_room_message_store (notify->room);
327
328 if (! message_store)
329 return GNUNET_NO;
330
331 message = get_store_message (message_store, hash);
332
333 if (! message)
334 return GNUNET_NO;
335
336 return traverse_epoch_session_message (notify, hash, message);
337}
static enum GNUNET_GenericReturnValue traverse_epoch_session_message(struct GNUNET_MESSENGER_MemberNotify *notify, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_Message *message)
unsigned int GNUNET_CONTAINER_multihashmap_size(const struct GNUNET_CONTAINER_MultiHashMap *map)
Get the number of key-value pairs in the map.
#define GNUNET_is_zero(a)
Check that memory in a is all zeros.

References GNUNET_MESSENGER_MemberNotify::epoch_counter, get_srv_room_message_store(), get_store_message(), GNUNET_assert, GNUNET_CONTAINER_multihashmap_size(), GNUNET_is_zero, GNUNET_NO, GNUNET_MESSENGER_MemberNotify::map, GNUNET_MESSENGER_MemberNotify::room, and traverse_epoch_session_message().

Referenced by send_message_join(), and traverse_epoch_session_message().

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

◆ traverse_epoch_session_message()

static enum GNUNET_GenericReturnValue traverse_epoch_session_message ( struct GNUNET_MESSENGER_MemberNotify notify,
const struct GNUNET_HashCode hash,
const struct GNUNET_MESSENGER_Message message 
)
static

Definition at line 196 of file gnunet-service-messenger_message_send.c.

199{
200 struct GNUNET_MESSENGER_SrvMemberSession *session;
201 enum GNUNET_GenericReturnValue notification;
202 struct GNUNET_PeerIdentity *peer_identity;
203
204 GNUNET_assert ((notify) && (message) && (hash));
205
206 session = GNUNET_CONTAINER_multihashmap_get (notify->map, hash);
207
208 if (session)
209 {
211 "Unmark member session from labeled as important: %s\n",
213
214 GNUNET_CONTAINER_multihashmap_put (notify->map, hash, NULL,
216 notify->epoch_counter++;
217
218 notification = GNUNET_YES;
219 }
221 hash))
222 return GNUNET_YES;
223 else
224 notification = GNUNET_NO;
225
226 peer_identity = NULL;
227
228 switch (message->header.kind)
229 {
231 if (GNUNET_YES == traverse_epoch_message (notify, &(message->body.join.epoch
232 )))
233 notification = GNUNET_YES;
234 break;
236 if (GNUNET_YES == traverse_epoch_message (notify, &(message->body.leave.
237 epoch)))
238 notification = GNUNET_YES;
239 break;
241 {
242 struct GNUNET_MESSENGER_PeerStore *peer_store;
243
244 peer_store = get_srv_room_peer_store (notify->room);
245
246 if (peer_store)
247 peer_identity = get_store_peer_of (peer_store, message, hash);
248
249 if (GNUNET_YES == traverse_epoch_message (notify, &(message->body.merge.
250 epochs[0])))
251 notification = GNUNET_YES;
252 if (GNUNET_YES == traverse_epoch_message (notify, &(message->body.merge.
253 epochs[1])))
254 notification = GNUNET_YES;
255 break;
256 }
257 default:
258 break;
259 }
260
261 if (GNUNET_YES != notification)
262 return notification;
263
264 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Notify about past epoch: %s\n",
265 GNUNET_h2s (hash));
266
267 if (! session)
268 {
269 struct GNUNET_MESSENGER_MemberStore *member_store;
270 struct GNUNET_MESSENGER_Member *member = NULL;
271
273 goto skip_session;
274
275 member_store = get_srv_room_member_store (notify->room);
276
277 if (member_store)
278 member = get_store_member_of (member_store, message);
279
280 if (member)
281 session = get_member_session_of (member, message, hash);
282
283skip_session:
284 GNUNET_CONTAINER_multihashmap_put (notify->map, hash, NULL,
286 }
287
288 {
289 struct GNUNET_MESSENGER_SenderSession sender;
290
291 if (session)
292 sender.member = session;
293 else if (peer_identity)
294 sender.peer = peer_identity;
295 else
296 {
298 "No valid sender session for message: %s\n",
299 GNUNET_h2s (hash));
300 return notification;
301 }
302
303 notify_srv_handle_message (notify->handle, notify->room, &sender, message,
304 hash, hash, GNUNET_NO);
305 }
306
307 return notification;
308}
static unsigned int epochs
-e option.
struct GNUNET_MESSENGER_SrvMemberSession * get_member_session_of(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Returns the member session of a member using a public key which can verify the signature of a given m...
struct GNUNET_MESSENGER_Member * get_store_member_of(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_MESSENGER_Message *message)
Returns the member of a store using a sender id of a given message.
static enum GNUNET_GenericReturnValue traverse_epoch_message(struct GNUNET_MESSENGER_MemberNotify *notify, const struct GNUNET_HashCode *hash)
struct GNUNET_PeerIdentity * get_store_peer_of(struct GNUNET_MESSENGER_PeerStore *store, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Returns the peer identity inside the store which verifies the signature of a given message as valid.
struct GNUNET_MESSENGER_PeerStore * get_srv_room_peer_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used peer store of a given room.
struct GNUNET_MESSENGER_MemberStore * get_srv_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used member store of a given room.
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.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE
If a value with the given key exists, replace it.
GNUNET_GenericReturnValue
Named constants for return values.
const char * GNUNET_h2s(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
@ GNUNET_MESSENGER_KIND_MERGE
The merge kind.
struct GNUNET_MESSENGER_MessageMerge merge
struct GNUNET_MESSENGER_MessageLeave leave
struct GNUNET_MESSENGER_MessageJoin join
struct GNUNET_HashCode epoch
The previous epoch the message was sent from.
struct GNUNET_MESSENGER_MessageBody body
Body.
struct GNUNET_MESSENGER_SrvMemberSession * member
The identity of the host (wraps the signing key of the peer).

References GNUNET_MESSENGER_Message::body, GNUNET_MESSENGER_MessageJoin::epoch, GNUNET_MESSENGER_MemberNotify::epoch_counter, epochs, get_member_session_id(), get_member_session_of(), get_srv_room_member_store(), get_srv_room_peer_store(), get_store_member_of(), get_store_peer_of(), GNUNET_assert, GNUNET_CONTAINER_multihashmap_contains(), GNUNET_CONTAINER_multihashmap_get(), GNUNET_CONTAINER_multihashmap_put(), GNUNET_CONTAINER_MULTIHASHMAPOPTION_REPLACE, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_WARNING, GNUNET_h2s(), GNUNET_log, GNUNET_MESSENGER_KIND_JOIN, GNUNET_MESSENGER_KIND_LEAVE, GNUNET_MESSENGER_KIND_MERGE, GNUNET_NO, GNUNET_sh2s(), GNUNET_YES, GNUNET_MESSENGER_MemberNotify::handle, GNUNET_MESSENGER_Message::header, GNUNET_MESSENGER_MessageBody::join, GNUNET_MESSENGER_MessageHeader::kind, GNUNET_MESSENGER_MessageBody::leave, GNUNET_MESSENGER_MemberNotify::map, GNUNET_MESSENGER_SenderSession::member, GNUNET_MESSENGER_MessageBody::merge, notify_srv_handle_message(), GNUNET_MESSENGER_SenderSession::peer, GNUNET_MESSENGER_MemberNotify::room, and traverse_epoch_message().

Referenced by traverse_epoch_message().

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

◆ send_message_join()

void send_message_join ( struct GNUNET_MESSENGER_SrvRoom room,
struct GNUNET_MESSENGER_SrvHandle handle,
const struct GNUNET_MESSENGER_Message message,
const struct GNUNET_HashCode hash 
)

Handles a sent join message to ensure growth of the decentralized room structure.

(if the service provides a peer message for this room currently, it will be forwarded)

Parameters
[in,out]roomRoom of the message
[in,out]handleSending handle
[in]messageJOIN-Message
[in]hashHash of the message

Definition at line 341 of file gnunet-service-messenger_message_send.c.

345{
346 struct GNUNET_MESSENGER_MemberStore *member_store;
347 struct GNUNET_MESSENGER_Member *member;
348 struct GNUNET_MESSENGER_SrvMemberSession *session;
349
350 set_srv_handle_key (handle, &(message->body.join.key));
351
352 member_store = get_srv_room_member_store (room);
353 member = add_store_member (member_store,
354 &(message->header.sender_id));
355
356 if (! member)
357 {
359 "A member could not join with ID: %s\n",
360 GNUNET_sh2s (&(message->header.sender_id)));
361 goto skip_member_notification;
362 }
363
364 session = get_member_session_of (member, message, hash);
365
366 if (! session)
367 {
369 "A valid session is required to join a room!\n");
370 goto skip_member_notification;
371 }
372
373 {
374 struct GNUNET_MESSENGER_MemberNotify notify;
375
376 notify.room = room;
377 notify.handle = handle;
378 notify.session = session;
380 notify.epoch_counter = 0;
381
382 if (notify.map)
383 {
384 uint32_t epoch_count;
385
387 notify);
388
389 epoch_count = GNUNET_CONTAINER_multihashmap_size (notify.map);
390
392 "Notify about all (%u) related epochs for current membership verification!\n",
393 epoch_count);
394
395 traverse_epoch_message (&notify, &(message->body.join.epoch));
396
397 if (epoch_count > notify.epoch_counter)
398 {
399 uint32_t missing;
400
401 missing = epoch_count - notify.epoch_counter;
402
404 "Missing at least %u epoch%s for current membership verification!\n",
405 missing, missing > 1? "s" : "");
406 }
407 }
408
410 "Notify about all member sessions except: %s\n",
412
414
415 if (notify.map)
417 }
418
419skip_member_notification:
421}
void set_srv_handle_key(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_CRYPTO_BlindablePublicKey *key)
Sets the public key of a given handle.
int iterate_store_members(struct GNUNET_MESSENGER_MemberStore *store, GNUNET_MESSENGER_MemberIteratorCallback it, void *cls)
Iterate through all member sessions currently connected to the members of the given member store and ...
struct GNUNET_MESSENGER_Member * add_store_member(struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id)
Adds a member to a store under a specific id and returns it on success.
static enum GNUNET_GenericReturnValue iterate_epoch_session_members(void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
static enum GNUNET_GenericReturnValue iterate_notify_about_members(void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
void check_srv_room_peer_status(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel)
Checks the current state of opening a given room from this peer and re-publishes it if necessary to a...
static struct GNUNET_VPN_Handle * handle
Handle to vpn service.
Definition gnunet-vpn.c:35
void GNUNET_CONTAINER_multihashmap_destroy(struct GNUNET_CONTAINER_MultiHashMap *map)
Destroy a hash map.
struct GNUNET_CONTAINER_MultiHashMap * GNUNET_CONTAINER_multihashmap_create(unsigned int len, int do_not_copy_keys)
Create a multi hash map.
struct GNUNET_ShortHashCode sender_id
The senders id inside of the room the message was sent in.
struct GNUNET_CRYPTO_BlindablePublicKey key
The senders blindable public key to verify its signatures.

References add_store_member(), GNUNET_MESSENGER_Message::body, check_srv_room_peer_status(), GNUNET_MESSENGER_MessageJoin::epoch, GNUNET_MESSENGER_MemberNotify::epoch_counter, get_member_session_id(), get_member_session_of(), get_srv_room_member_store(), GNUNET_CONTAINER_multihashmap_create(), GNUNET_CONTAINER_multihashmap_destroy(), GNUNET_CONTAINER_multihashmap_size(), GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_WARNING, GNUNET_log, GNUNET_NO, GNUNET_sh2s(), handle, GNUNET_MESSENGER_MemberNotify::handle, GNUNET_MESSENGER_Message::header, iterate_epoch_session_members(), iterate_notify_about_members(), iterate_store_members(), GNUNET_MESSENGER_MessageBody::join, GNUNET_MESSENGER_MessageJoin::key, GNUNET_MESSENGER_MemberNotify::map, GNUNET_MESSENGER_SrvMemberSession::member, GNUNET_MESSENGER_MemberNotify::room, GNUNET_MESSENGER_MessageHeader::sender_id, GNUNET_MESSENGER_MemberNotify::session, set_srv_handle_key(), and traverse_epoch_message().

Referenced by callback_srv_room_message_signed().

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

◆ send_message_key()

void send_message_key ( struct GNUNET_MESSENGER_SrvRoom room,
struct GNUNET_MESSENGER_SrvHandle handle,
const struct GNUNET_MESSENGER_Message message,
const struct GNUNET_HashCode hash 
)

Handles a sent key message to ensure changes to the public key of the sending handle.

Parameters
[in,out]roomRoom of the message
[in,out]handleSending handle
[in]messageKEY-Message
[in]hashHash of the message

Definition at line 425 of file gnunet-service-messenger_message_send.c.

429{
430 set_srv_handle_key (handle, &(message->body.key.key));
431}
struct GNUNET_MESSENGER_MessageKey key
struct GNUNET_CRYPTO_BlindablePublicKey key
The new blindable public key which replaces the current senders public key.

References GNUNET_MESSENGER_Message::body, handle, GNUNET_MESSENGER_MessageKey::key, GNUNET_MESSENGER_MessageBody::key, and set_srv_handle_key().

Referenced by callback_srv_room_message_signed().

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

◆ send_message_peer()

void send_message_peer ( struct GNUNET_MESSENGER_SrvRoom room,
struct GNUNET_MESSENGER_SrvHandle handle,
const struct GNUNET_MESSENGER_Message message,
const struct GNUNET_HashCode hash 
)

Handles a sent peer message to update the rooms peer message of this service.

(a set peer message indicates this service being a part of the decentralized room structure)

Parameters
[in,out]roomRoom of the message
[in,out]handleSending handle
[in]messagePEER-Message
[in]hashHash of the message

Definition at line 435 of file gnunet-service-messenger_message_send.c.

439{
441
442 if (! room->peer_message)
443 room->peer_message = GNUNET_new (struct GNUNET_HashCode);
444
445 GNUNET_memcpy (room->peer_message, hash, sizeof(struct GNUNET_HashCode));
446
448
449 if (! msg)
451 "Sending connection message failed: %s\n",
452 GNUNET_h2s (&(room->key)));
453 else
454 send_srv_room_message (room, room->host, msg);
455}
struct GNUNET_MessageHeader * msg
Definition 005.c:2
struct GNUNET_MESSENGER_Message * create_message_connection(const struct GNUNET_MESSENGER_SrvRoom *room)
Creates and allocates a new connection message containing the amount of the peer's connections in a g...
enum GNUNET_GenericReturnValue send_srv_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Message *message)
Sends a message from a given handle into a room.
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
@ GNUNET_ERROR_TYPE_ERROR
#define GNUNET_new(type)
Allocate a struct or union of the given type.
struct GNUNET_MESSENGER_SrvHandle * host

References create_message_connection(), GNUNET_ERROR_TYPE_ERROR, GNUNET_h2s(), GNUNET_log, GNUNET_memcpy, GNUNET_new, GNUNET_MESSENGER_SrvRoom::host, GNUNET_MESSENGER_SrvRoom::key, msg, GNUNET_MESSENGER_SrvRoom::peer_message, and send_srv_room_message().

Referenced by callback_srv_room_message_signed().

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

◆ send_message_id()

void send_message_id ( struct GNUNET_MESSENGER_SrvRoom room,
struct GNUNET_MESSENGER_SrvHandle handle,
const struct GNUNET_MESSENGER_Message message,
const struct GNUNET_HashCode hash 
)

Handles a sent id message to update the handles member id in the room.

(changing member id is useful to prevent collisions)

Parameters
[in,out]roomRoom of the message
[in,out]handleSending handle
[in]messageID-Message
[in]hashHash of the message

Definition at line 459 of file gnunet-service-messenger_message_send.c.

463{
465 &(message->body.id.id));
466}
enum GNUNET_GenericReturnValue change_srv_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *unique_id)
Changes the member id of a given handle in a specific room to match a unique_id and returns GNUNET_OK...
const struct GNUNET_HashCode * get_srv_room_key(const struct GNUNET_MESSENGER_SrvRoom *room)
Returns the shared secret you need to access a room.
struct GNUNET_MESSENGER_MessageId id
struct GNUNET_ShortHashCode id
The new id which will replace the senders id in a room.

References GNUNET_MESSENGER_Message::body, change_srv_handle_member_id(), get_srv_room_key(), handle, GNUNET_MESSENGER_MessageId::id, and GNUNET_MESSENGER_MessageBody::id.

Referenced by callback_srv_room_message_signed().

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

◆ send_message_request()

void send_message_request ( struct GNUNET_MESSENGER_SrvRoom room,
struct GNUNET_MESSENGER_SrvHandle handle,
const struct GNUNET_MESSENGER_Message message,
const struct GNUNET_HashCode hash 
)

Handles a sent request message to trigger the request operation for this service.

(the request operation will deactivate the possibility of spamming requests)

Parameters
[in,out]roomRoom of the message
[in,out]handleSending handle
[in]messageREQUEST-Message
[in]hashHash of the message

Definition at line 470 of file gnunet-service-messenger_message_send.c.

474{
475 struct GNUNET_MESSENGER_OperationStore *operation_store;
476
477 operation_store = get_srv_room_operation_store (room);
478
480 operation_store,
481 &(message->body.request.hash),
484}
enum GNUNET_GenericReturnValue use_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_OperationType type, struct GNUNET_TIME_Relative delay)
Tries to use an operation under a given hash in a specific operation store.
struct GNUNET_MESSENGER_OperationStore * get_srv_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used operation store of a given room.
#define GNUNET_MESSENGER_REQUEST_DELAY
struct GNUNET_MESSENGER_MessageRequest request
struct GNUNET_HashCode hash
The hash of the requested message.

References GNUNET_MESSENGER_Message::body, get_srv_room_operation_store(), GNUNET_MESSENGER_OP_REQUEST, GNUNET_MESSENGER_REQUEST_DELAY, GNUNET_MESSENGER_MessageRequest::hash, GNUNET_MESSENGER_MessageBody::request, GNUNET_MESSENGER_OperationStore::room, and use_store_operation().

Referenced by callback_srv_room_message_signed().

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