GNUnet 0.22.2
gnunet-service-messenger_member_session.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2021--2024 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
27
30
32
35 const struct GNUNET_CRYPTO_PublicKey *pubkey)
36{
37 struct GNUNET_MESSENGER_MemberSession *session;
38
39 if ((! member) || (! pubkey) || (! (member->store)))
40 return NULL;
41
43 session->member = member;
44
45 GNUNET_memcpy (&(session->public_key), pubkey, sizeof(session->public_key));
46
48 get_member_session_key (session),
49 get_member_session_id (session),
50 &(session->context)
51 );
52
53 {
55
56 store = get_member_contact_store (member->store);
57
58 session->contact = get_store_contact (
59 store,
62 );
63 }
64
65 if (! (session->contact))
66 {
67 GNUNET_free (session);
68 return NULL;
69 }
70
72
74
75 init_list_messages (&(session->messages));
76
77 session->prev = NULL;
78 session->next = NULL;
79
80 session->start = GNUNET_TIME_absolute_get ();
81
82 session->closed = GNUNET_NO;
83 session->completed = GNUNET_NO;
84
85 return session;
86}
87
88
91{
92 struct GNUNET_MESSENGER_Member *member;
93
94 GNUNET_assert (session);
95
96 member = session->member;
97
98 GNUNET_assert (member);
99
100 return member->store;
101}
102
103
104static struct GNUNET_MESSENGER_SrvRoom*
106{
107 struct GNUNET_MESSENGER_MemberStore *store;
108
109 GNUNET_assert (session);
110
111 store = get_session_member_store (session);
112
113 GNUNET_assert (store);
114
115 return store->room;
116}
117
118
119static void
121{
122 const struct GNUNET_HashCode *start;
123 const struct GNUNET_HashCode *end;
124 struct GNUNET_MESSENGER_MessageStore *msg_store;
127
128 GNUNET_assert (session);
129
131 "Check session history (%s) for completion.\n",
133
134 if (! session->messages.tail)
135 {
136 session->completed = GNUNET_YES;
137 goto completion;
138 }
139
140 start = &(session->messages.head->hash);
141 end = &(session->messages.tail->hash);
142
143 msg_store = get_srv_room_message_store (get_session_room (session));
144
145 init_list_messages (&level);
146 add_to_list_messages (&level, end);
147
149
150 while (level.head)
151 {
152 struct GNUNET_MESSENGER_ListMessage *element;
153
154 for (element = level.head; element; element = element->next)
155 {
156 const struct GNUNET_MESSENGER_MessageLink *link;
157
159 msg_store, &(element->hash), GNUNET_NO
160 );
161
162 if (! link)
163 continue;
164
165 add_to_list_messages (&list, &(link->first));
166
167 if (GNUNET_YES == link->multiple)
168 add_to_list_messages (&list, &(link->second));
169 }
170
171 clear_list_messages (&level);
172
173 for (element = list.head; element; element = element->next)
174 if (GNUNET_YES == check_member_session_history (session, &(element->hash),
175 GNUNET_YES))
176 break;
177
178 if (element)
179 if (0 != GNUNET_CRYPTO_hash_cmp (&(element->hash), start))
180 add_to_list_messages (&level, &(element->hash));
181 else
182 session->completed = GNUNET_YES;
183 else
184 copy_list_messages (&level, &list);
185
187 }
188
189completion:
191 {
192 struct GNUNET_MESSENGER_MemberStore *member_store;
193 struct GNUNET_MESSENGER_ContactStore *store;
194
195 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Completed session history (%s)\n",
197
198 member_store = get_session_member_store (session);
199 store = get_member_contact_store (member_store);
200
201 if ((session->contact) && (GNUNET_YES == decrease_contact_rc (
202 session->contact)))
204 store,
205 session->contact,
207 );
208
209 session->contact = NULL;
210 }
211}
212
213
216 const struct GNUNET_HashCode *key,
217 void *value)
218{
220
221 GNUNET_assert ((cls) && (key));
222
223 next = cls;
224
227
228 return GNUNET_YES;
229}
230
231
234 const struct GNUNET_MESSENGER_Message *message,
235 const struct GNUNET_HashCode *hash)
236{
237 struct GNUNET_MESSENGER_MemberStore *store;
239
240 if ((! session) || (! message) || (! hash))
241 return NULL;
242
245
246 store = get_session_member_store (session);
248
249 if (GNUNET_MESSENGER_KIND_ID == message->header.kind)
250 {
251 next->member = add_store_member (store,
252 &(message->body.id.id));
253 if (! next->member)
254 {
256 "Failed to switch member session to ID: %s\n",
257 GNUNET_sh2s (&(message->body.id.id)));
258
260 return NULL;
261 }
262 }
263 else
264 next->member = session->member;
265
266 if (GNUNET_MESSENGER_KIND_KEY == message->header.kind)
267 GNUNET_memcpy (&(next->public_key), &(message->body.key.key),
268 sizeof(next->public_key));
269 else
271 sizeof(next->public_key));
272
276 &(next->context)
277 );
278
285 );
286
288
289 if (! (next->contact))
290 {
292 return NULL;
293 }
294
296
299 );
300
302 next);
303
305 copy_list_messages (&(next->messages), &(session->messages));
306
307 session->next = next;
308 next->prev = session;
309 next->next = NULL;
310
312
313 session->closed = GNUNET_YES;
316
318
319 return next;
320}
321
322
323void
325{
326 struct GNUNET_MESSENGER_MemberStore *store;
327 struct GNUNET_MESSENGER_Contact *contact;
328
329 GNUNET_assert (session);
330
332
333 clear_list_messages (&(session->messages));
334
335 store = get_session_member_store (session);
336 contact = get_member_session_contact (session);
337
338 if ((contact) && (GNUNET_YES == decrease_contact_rc (contact)))
341 contact,
343 );
344
345 GNUNET_free (session);
346}
347
348
351 const struct GNUNET_HashCode *hash)
352{
353 struct GNUNET_MESSENGER_Contact *contact;
354
355 GNUNET_assert ((session) && (hash));
356
357 {
358 struct GNUNET_MESSENGER_MemberStore *member_store;
359 struct GNUNET_MESSENGER_ContactStore *store;
360
361 member_store = get_session_member_store (session);
362 store = get_member_contact_store (member_store);
363 contact = get_store_contact (
364 store,
367 );
368 }
369
370 if (! contact)
371 return GNUNET_SYSERR;
372
373 if (contact == session->contact)
374 goto clear_messages;
375
376 session->contact = contact;
377 increase_contact_rc (session->contact);
378
379clear_messages:
380 clear_list_messages (&(session->messages));
381 add_to_list_messages (&(session->messages), hash);
382
383 session->next = NULL;
384 session->closed = GNUNET_NO;
385 session->completed = GNUNET_NO;
386
387 return GNUNET_OK;
388}
389
390
391void
393{
394 GNUNET_assert (session);
395
396 session->closed = GNUNET_YES;
398}
399
400
403{
404 GNUNET_assert (session);
405
406 return session->closed;
407}
408
409
413{
414 GNUNET_assert (session);
415
416 return session->completed;
417}
418
419
422{
423 GNUNET_assert (session);
424
425 if (session->prev)
426 return get_member_session_start (session->prev);
427
428 return session->start;
429}
430
431
432const struct GNUNET_HashCode*
434{
435 const struct GNUNET_MESSENGER_MemberStore *store;
436
437 GNUNET_assert ((session) && (session->member));
438
439 store = get_session_member_store (session);
440
441 return get_member_store_key (store);
442}
443
444
445const struct GNUNET_ShortHashCode*
447{
448 GNUNET_assert (session);
449
450 return get_member_id (session->member);
451}
452
453
454const struct GNUNET_CRYPTO_PublicKey*
457{
458 GNUNET_assert (session);
459
460 return &(session->public_key);
461}
462
463
464const struct GNUNET_HashCode*
467{
468 GNUNET_assert (session);
469
470 return &(session->context);
471}
472
473
476{
477 GNUNET_assert (session);
478
479 return session->contact;
480}
481
482
486 const struct GNUNET_MESSENGER_Message *message,
487 const struct GNUNET_HashCode *hash)
488{
489 GNUNET_assert ((session) && (message) && (hash));
490
492 {
493 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Check message (%s) using history!\n",
494 GNUNET_h2s (hash));
495
496 if (GNUNET_YES == check_member_session_history (session, hash, GNUNET_YES))
497 return GNUNET_OK;
498 else
499 return GNUNET_SYSERR;
500 }
501
502 if (0 != GNUNET_memcmp (get_member_session_id (session),
503 &(message->header.sender_id)))
504 return GNUNET_SYSERR;
505
506 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Check message (%s) using key: %s\n",
507 GNUNET_h2s (hash),
510
511 return verify_message (message, hash, get_member_session_public_key (
512 session));
513}
514
515
519 const struct GNUNET_HashCode *hash,
520 enum GNUNET_GenericReturnValue ownership)
521{
522 GNUNET_assert ((session) && (hash));
523
524 if (GNUNET_YES == ownership)
525 return (NULL != GNUNET_CONTAINER_multihashmap_get (session->history, hash)?
527 else
528 return GNUNET_CONTAINER_multihashmap_contains (session->history, hash);
529}
530
531
532static void
534 const struct GNUNET_HashCode *hash,
535 enum GNUNET_GenericReturnValue ownership)
536{
537 GNUNET_assert ((session) && (hash));
538
540 (GNUNET_YES == ownership?
541 session : NULL),
543 && (session->next))
544 update_member_chain_history (session->next, hash, ownership);
545}
546
547
548void
550 const struct GNUNET_MESSENGER_Message *message,
551 const struct GNUNET_HashCode *hash)
552{
553 GNUNET_assert ((session) && (message) && (hash));
554
556 return;
557
559 "Updating sessions history (%s) += (%s)\n",
560 GNUNET_sh2s (get_member_session_id (session)), GNUNET_h2s (hash));
561
562 if (GNUNET_OK == verify_member_session_as_sender (session, message, hash))
563 {
564 if (GNUNET_YES == is_message_session_bound (message))
565 add_to_list_messages (&(session->messages), hash);
566
568 }
569 else
570 update_member_chain_history (session, hash, GNUNET_NO);
571
572 if (GNUNET_YES == session->closed)
574}
575
576
577static void
579 const struct GNUNET_HashCode *hash)
580{
581 GNUNET_assert ((session) && (hash));
582
583 if ((0 < GNUNET_CONTAINER_multihashmap_remove_all (session->history, hash)) &&
584 (session->next))
585 clear_member_session_history (session->next, hash);
586}
587
588
589void
591 const struct GNUNET_HashCode *hash)
592{
593 GNUNET_assert ((session) && (hash));
594
595 clear_member_chain_history (session, hash);
596}
597
598
600{
602 unsigned char ownership;
603};
604
605static void
607 const char *path)
608{
611
612 GNUNET_assert ((session) && (path));
613
614 if (GNUNET_YES != GNUNET_DISK_file_test (path))
615 return;
616
617 {
618 enum GNUNET_DISK_AccessPermissions permission;
619
622 }
623
624 if (! handle)
625 return;
626
628
629 do {
631 ssize_t len;
632
633 len = GNUNET_DISK_file_read (handle, &(entry.hash), sizeof(entry.hash));
634
635 if (len != sizeof(entry.hash))
636 break;
637
638 len = GNUNET_DISK_file_read (handle, &(entry.ownership),
639 sizeof(entry.ownership));
640
641 if (len != sizeof(entry.ownership))
642 break;
643
645 (entry.ownership? session :
646 NULL),
648 } while (status == GNUNET_OK);
649
651}
652
653
654void
656 const char *directory)
657{
658 char *config_file;
659 struct GNUNET_MESSENGER_MemberSession *session;
661
662 GNUNET_assert ((member) && (directory));
663
664 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
665
666 session = NULL;
667
669 goto free_config;
670
672 "Load session configuration of member: %s\n", config_file);
673
675
676 if (! cfg)
677 goto free_config;
678
680 {
682 enum GNUNET_GenericReturnValue key_result;
683 unsigned long long numeric_value;
684 char *key_data;
685
687 "key", &key_data))
688 goto destroy_config;
689
690 key_result = GNUNET_CRYPTO_public_key_from_string (key_data, &key);
691 GNUNET_free (key_data);
692
693 if (GNUNET_OK != key_result)
694 goto destroy_config;
695
696 session = create_member_session (member, &key);
697
699 "start",
700 &numeric_value))
701 session->start.abs_value_us = numeric_value;
702
704 "closed",
705 &numeric_value))
706 session->closed = (GNUNET_YES == numeric_value? GNUNET_YES : GNUNET_NO);
707
709 "completed",
710 &numeric_value))
711 session->completed = (GNUNET_YES == numeric_value? GNUNET_YES :
712 GNUNET_NO);
713 }
714
715destroy_config:
717
718free_config:
720
721 if (! session)
722 return;
723
724 {
725 char *history_file;
726 GNUNET_asprintf (&history_file, "%s%s", directory, "history.map");
727
728 load_member_session_history (session, history_file);
729 GNUNET_free (history_file);
730 }
731
732 {
733 char *messages_file;
734 GNUNET_asprintf (&messages_file, "%s%s", directory, "messages.list");
735
736 load_list_messages (&(session->messages), messages_file);
737 GNUNET_free (messages_file);
738 }
739
740 add_member_session (member, session);
741}
742
743
747{
748 struct GNUNET_MESSENGER_MemberSession *check;
749
750 if (! next)
751 return NULL;
752
753 check = next;
754
755 do {
756 if (check == session)
757 return NULL;
758
759 check = check->next;
760 } while (check);
761
762 return next;
763}
764
765
766void
768 const char *directory)
769{
771 char *config_file;
772
773
774 GNUNET_assert ((session) && (directory));
775
776 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
777
779 goto free_config;
780
782 "Load next session configuration of member: %s\n", config_file);
783
785
786 if (! cfg)
787 goto free_config;
788
790 {
791 struct GNUNET_CRYPTO_PublicKey next_key;
792 enum GNUNET_GenericReturnValue key_result;
794 char *key_data;
795
797 "next_key",
798 &key_data))
799 goto destroy_config;
800
801 key_result = GNUNET_CRYPTO_public_key_from_string (key_data, &next_key);
802 GNUNET_free (key_data);
803
804 if (GNUNET_OK != key_result)
805 goto destroy_config;
806
807 if (GNUNET_OK != GNUNET_CONFIGURATION_get_data (cfg, "session", "next_id",
808 &next_id, sizeof(next_id)))
809 goto destroy_config;
810
811 {
812 struct GNUNET_MESSENGER_MemberStore *store;
813 struct GNUNET_MESSENGER_Member *member;
814
816 member = get_store_member (store, &next_id);
817
819 session, member? get_member_session (member, &next_key) : NULL
820 );
821 }
822
823 if (session->next)
824 session->next->prev = session;
825 }
826
827destroy_config:
829
830free_config:
832}
833
834
837 const struct GNUNET_HashCode *key,
838 void *value)
839{
841 unsigned char ownership;
842
843 GNUNET_assert ((cls) && (key));
844
845 handle = cls;
846 ownership = value? GNUNET_YES : GNUNET_NO;
847
849 GNUNET_DISK_file_write (handle, &ownership, sizeof(ownership));
850
851 return GNUNET_YES;
852}
853
854
855static void
857 const char *path)
858{
860
861 GNUNET_assert ((session) && (path));
862
863 {
864 enum GNUNET_DISK_AccessPermissions permission;
865
867
870 );
871 }
872
873 if (! handle)
874 return;
875
877
879 session->history,
881 handle
882 );
883
886}
887
888
889void
891 const char *directory)
892{
894 char *config_file;
895 char *key_data;
896
897 GNUNET_assert ((session) && (directory));
898
899 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
900
902 "Save session configuration of member: %s\n", config_file);
903
905
906 if (! cfg)
907 goto free_config;
908
911
912 if (key_data)
913 {
914 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "key", key_data);
915 GNUNET_free (key_data);
916 }
917
918 if (session->next)
919 {
921 session->next);
922
923 char *next_id_data = GNUNET_STRINGS_data_to_string_alloc (next_id,
924 sizeof(*next_id));
925
926 if (next_id_data)
927 {
928 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "next_id",
929 next_id_data);
930 GNUNET_free (next_id_data);
931 }
932
935
936 if (key_data)
937 {
938 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "next_key",
939 key_data);
940 GNUNET_free (key_data);
941 }
942 }
943
944 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "start",
945 session->start.abs_value_us);
946
947 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "closed",
948 session->closed);
949 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "completed",
950 session->completed);
951
954
955free_config:
957
958 {
959 char *history_file;
960 GNUNET_asprintf (&history_file, "%s%s", directory, "history.map");
961
962 save_member_session_history (session, history_file);
963 GNUNET_free (history_file);
964 }
965
966 {
967 char *messages_file;
968 GNUNET_asprintf (&messages_file, "%s%s", directory, "messages.list");
969
970 save_list_messages (&(session->messages), messages_file);
971 GNUNET_free (messages_file);
972 }
973}
static int start
Set if we are to start default services (including ARM).
Definition: gnunet-arm.c:38
static int list
Set if we should print a list of currently running services.
Definition: gnunet-arm.c:68
static struct GNUNET_CONFIGURATION_Handle * cfg
Our configuration.
Definition: gnunet-arm.c:108
static int end
Set if we are to shutdown all services (including ARM).
Definition: gnunet-arm.c:33
static char * config_file
Set to the name of the config file used.
Definition: gnunet-arm.c:83
struct GNUNET_HashCode key
The key used in the DHT.
static struct GNUNET_CRYPTO_PublicKey pubkey
Public key of the zone to look in.
static char * value
Value of the record to add/remove.
static int status
The program status; 0 for success.
Definition: gnunet-nse.c:39
static char * next_id
Command-line option for namespace publishing: identifier for updates to this publication.
void clear_list_messages(struct GNUNET_MESSENGER_ListMessages *messages)
Clears the list of message hashes.
void load_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const char *path)
Loads the list of message hashes from a file under a given path.
void init_list_messages(struct GNUNET_MESSENGER_ListMessages *messages)
Initializes list of message hashes as empty list.
void copy_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_MESSENGER_ListMessages *origin)
Copies all message hashes from an origin to another list.
void save_list_messages(const struct GNUNET_MESSENGER_ListMessages *messages, const char *path)
Saves the list of message hashes to a file under a given path.
void add_to_list_messages(struct GNUNET_MESSENGER_ListMessages *messages, const struct GNUNET_HashCode *hash)
Adds a specific hash from a message to the end of the list.
const struct GNUNET_ShortHashCode * get_member_id(const struct GNUNET_MESSENGER_Member *member)
Returns the current id of a given member.
struct GNUNET_MESSENGER_MemberSession * get_member_session(const struct GNUNET_MESSENGER_Member *member, const struct GNUNET_CRYPTO_PublicKey *public_key)
Returns the member session of a member identified by a given public key.
void add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session)
Adds a given member session to its member.
void clear_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash)
Removes a message from the history of a session using the messages hash.
void destroy_member_session(struct GNUNET_MESSENGER_MemberSession *session)
Destroys a member session and frees its memory fully.
const struct GNUNET_CRYPTO_PublicKey * get_member_session_public_key(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the public key of a given member session.
static void clear_member_chain_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash)
void load_member_session_next(struct GNUNET_MESSENGER_MemberSession *session, const char *directory)
Loads the connection from one session to another through the next attribute.
void close_member_session(struct GNUNET_MESSENGER_MemberSession *session)
Closes a given member session which opens the request for completion of the given member session.
struct GNUNET_TIME_Absolute get_member_session_start(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the timestamp of the member session's start.
static void update_member_chain_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash, enum GNUNET_GenericReturnValue ownership)
static void load_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const char *path)
static enum GNUNET_GenericReturnValue iterate_save_member_session_history_hentries(void *cls, const struct GNUNET_HashCode *key, void *value)
void update_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Adds a given message to the history of a session using the messages hash.
static struct GNUNET_MESSENGER_MemberStore * get_session_member_store(const struct GNUNET_MESSENGER_MemberSession *session)
const struct GNUNET_ShortHashCode * get_member_session_id(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the member id of a given member session.
enum GNUNET_GenericReturnValue check_member_session_history(const struct GNUNET_MESSENGER_MemberSession *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...
enum GNUNET_GenericReturnValue reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash)
Resets a given member session which re-opens a member session for new usage.
static void check_member_session_completion(struct GNUNET_MESSENGER_MemberSession *session)
const struct GNUNET_HashCode * get_member_session_key(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the key of the room a given member session belongs to.
static enum GNUNET_GenericReturnValue iterate_copy_history(void *cls, const struct GNUNET_HashCode *key, void *value)
struct GNUNET_MESSENGER_Contact * get_member_session_contact(struct GNUNET_MESSENGER_MemberSession *session)
Returns the contact which is connected to a given member session.
struct GNUNET_MESSENGER_MemberSession * switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Creates and allocates a new member session closing and replacing a given other session of the same me...
void load_member_session(struct GNUNET_MESSENGER_Member *member, const char *directory)
Loads data from a directory into a new allocated and created member session of a member if the requir...
void save_member_session(struct GNUNET_MESSENGER_MemberSession *session, const char *directory)
Saves data from a member session into a directory which can be load to restore the member session com...
struct GNUNET_MESSENGER_MemberSession * create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_CRYPTO_PublicKey *pubkey)
Creates and allocates a new member session of a member with a given public key.
enum GNUNET_GenericReturnValue verify_member_session_as_sender(const struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Verifies a given member session as sender of a selected message and its hash.
static void save_member_session_history(struct GNUNET_MESSENGER_MemberSession *session, const char *path)
enum GNUNET_GenericReturnValue is_member_session_completed(const struct GNUNET_MESSENGER_MemberSession *session)
Returns if the given member session has been completed.
enum GNUNET_GenericReturnValue is_member_session_closed(const struct GNUNET_MESSENGER_MemberSession *session)
Returns if the given member session has been closed.
static struct GNUNET_MESSENGER_MemberSession * get_cycle_safe_next_session(struct GNUNET_MESSENGER_MemberSession *session, struct GNUNET_MESSENGER_MemberSession *next)
static struct GNUNET_MESSENGER_SrvRoom * get_session_room(const struct GNUNET_MESSENGER_MemberSession *session)
const struct GNUNET_HashCode * get_member_session_context(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the member context of a given member session.
struct GNUNET_MESSENGER_ContactStore * get_member_contact_store(struct GNUNET_MESSENGER_MemberStore *store)
Returns the used contact store of a given member store.
const struct GNUNET_HashCode * get_member_store_key(const struct GNUNET_MESSENGER_MemberStore *store)
Returns the shared secret you need to access a room of the store.
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.
struct GNUNET_MESSENGER_Member * get_store_member(const struct GNUNET_MESSENGER_MemberStore *store, const struct GNUNET_ShortHashCode *id)
Returns the member in a store identified by a given id.
const struct GNUNET_MESSENGER_MessageLink * get_store_message_link(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, enum GNUNET_GenericReturnValue deleted_only)
Returns the message link 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.
static struct GNUNET_VPN_Handle * handle
Handle to vpn service.
Definition: gnunet-vpn.c:35
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_data(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, void *buf, size_t buf_size)
Get Crockford32-encoded fixed-size binary data from a configuration.
struct GNUNET_CONFIGURATION_Handle * GNUNET_CONFIGURATION_create(const struct GNUNET_OS_ProjectData *pd)
Create a new configuration object.
void GNUNET_CONFIGURATION_set_value_string(struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, const char *value)
Set a configuration value that should be a string.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_number(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, unsigned long long *number)
Get a configuration value that should be a number.
void GNUNET_CONFIGURATION_destroy(struct GNUNET_CONFIGURATION_Handle *cfg)
Destroy configuration object.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_string(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be a string.
void GNUNET_CONFIGURATION_set_value_number(struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, unsigned long long number)
Set a configuration value that should be a number.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_parse(struct GNUNET_CONFIGURATION_Handle *cfg, const char *filename)
Parse a configuration file, add all of the options in the file to the configuration environment.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_write(struct GNUNET_CONFIGURATION_Handle *cfg, const char *filename)
Write configuration file.
struct GNUNET_DISK_FileHandle * GNUNET_DISK_file_open(const char *fn, enum GNUNET_DISK_OpenFlags flags, enum GNUNET_DISK_AccessPermissions perm)
Open a file.
Definition: disk.c:1215
enum GNUNET_GenericReturnValue GNUNET_DISK_file_test(const char *fil)
Check that fil corresponds to a filename (of a file that exists and that is not a directory).
Definition: disk.c:506
ssize_t GNUNET_DISK_file_write(const struct GNUNET_DISK_FileHandle *h, const void *buffer, size_t n)
Write a buffer to a file.
Definition: disk.c:682
off_t GNUNET_DISK_file_seek(const struct GNUNET_DISK_FileHandle *h, off_t offset, enum GNUNET_DISK_Seek whence)
Move the read/write pointer in a file.
Definition: disk.c:206
GNUNET_DISK_AccessPermissions
File access permissions, UNIX-style.
enum GNUNET_GenericReturnValue GNUNET_DISK_file_sync(const struct GNUNET_DISK_FileHandle *h)
Write file changes to disk.
Definition: disk.c:1408
enum GNUNET_GenericReturnValue GNUNET_DISK_file_close(struct GNUNET_DISK_FileHandle *h)
Close an open file.
Definition: disk.c:1289
ssize_t GNUNET_DISK_file_read(const struct GNUNET_DISK_FileHandle *h, void *result, size_t len)
Read the contents of a binary file into a buffer.
Definition: disk.c:646
@ GNUNET_DISK_OPEN_READ
Open the file for reading.
@ GNUNET_DISK_OPEN_WRITE
Open the file for writing.
@ GNUNET_DISK_OPEN_CREATE
Create file if it doesn't exist.
@ GNUNET_DISK_PERM_USER_READ
Owner can read.
@ GNUNET_DISK_PERM_USER_WRITE
Owner can write.
@ GNUNET_DISK_SEEK_SET
Seek an absolute position (from the start of the file).
int GNUNET_CRYPTO_hash_cmp(const struct GNUNET_HashCode *h1, const struct GNUNET_HashCode *h2)
Compare function for HashCodes, producing a total ordering of all hashcodes.
Definition: crypto_hash.c:218
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).
int GNUNET_CONTAINER_multihashmap_remove_all(struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key)
Remove all entries for the given key from the map.
int GNUNET_CONTAINER_multihashmap_iterate(struct GNUNET_CONTAINER_MultiHashMap *map, GNUNET_CONTAINER_MultiHashMapIteratorCallback it, void *it_cls)
Iterate over all entries in the map.
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.
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.
unsigned int GNUNET_CONTAINER_multihashmap_size(const struct GNUNET_CONTAINER_MultiHashMap *map)
Get the number of key-value pairs in the map.
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.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST
, ' bother checking if a value already exists (faster than GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE...
#define GNUNET_log(kind,...)
char * GNUNET_CRYPTO_public_key_to_string(const struct GNUNET_CRYPTO_PublicKey *key)
Creates a (Base32) string representation of the public key.
Definition: crypto_pkey.c:379
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
GNUNET_GenericReturnValue
Named constants for return values.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_public_key_from_string(const char *str, struct GNUNET_CRYPTO_PublicKey *key)
Parses a (Base32) string representation of the public key.
Definition: crypto_pkey.c:399
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#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).
const char * GNUNET_h2s(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_DEBUG
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
@ GNUNET_MESSENGER_KIND_KEY
The key kind.
@ GNUNET_MESSENGER_KIND_ID
The id kind.
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
char * GNUNET_STRINGS_data_to_string_alloc(const void *buf, size_t size)
Return the base32crockford encoding of the given buffer.
Definition: strings.c:787
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get(void)
Get the current time.
Definition: time.c:111
enum GNUNET_GenericReturnValue decrease_contact_rc(struct GNUNET_MESSENGER_Contact *contact)
Decreases the reference counter if possible (can not underflow!) of a given contact and returns GNUNE...
void increase_contact_rc(struct GNUNET_MESSENGER_Contact *contact)
Increases the reference counter of a given contact which is zero as default.
void get_context_from_member(const struct GNUNET_HashCode *key, const struct GNUNET_ShortHashCode *id, struct GNUNET_HashCode *context)
Calculates the context hash of a member in a room and returns it.
void update_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context, const struct GNUNET_HashCode *next_context, const struct GNUNET_CRYPTO_PublicKey *pubkey)
Moves a contact from the store to another location matching a given public key and member context.
struct GNUNET_MESSENGER_Contact * get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_CRYPTO_PublicKey *pubkey)
Returns a contact using a specific public key.
void remove_store_contact(struct GNUNET_MESSENGER_ContactStore *store, struct GNUNET_MESSENGER_Contact *contact, const struct GNUNET_HashCode *context)
Removes a contact from the store which uses a given member context.
enum GNUNET_GenericReturnValue verify_message(const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_PublicKey *key)
Verifies the signature of a given message and its hash with a specific public key.
enum GNUNET_GenericReturnValue is_message_session_bound(const struct GNUNET_MESSENGER_Message *message)
Returns if the message should be bound to a member session.
An identity key as per LSD0001.
Handle used to access files (and pipes).
A 512-bit hashcode.
struct GNUNET_MESSENGER_ListMessage * next
struct GNUNET_MESSENGER_ListMessage * head
struct GNUNET_MESSENGER_ListMessage * tail
struct GNUNET_CONTAINER_MultiHashMap * history
struct GNUNET_MESSENGER_MemberSession * prev
struct GNUNET_MESSENGER_MemberSession * next
struct GNUNET_MESSENGER_ListMessages messages
struct GNUNET_MESSENGER_MemberStore * store
struct GNUNET_MESSENGER_MessageId id
struct GNUNET_MESSENGER_MessageKey key
enum GNUNET_MESSENGER_MessageKind kind
The kind of the message.
struct GNUNET_ShortHashCode sender_id
The senders id inside of the room the message was sent in.
struct GNUNET_ShortHashCode id
The new id which will replace the senders id in a room.
struct GNUNET_CRYPTO_PublicKey key
The new public key which replaces the current senders public key.
struct GNUNET_MESSENGER_MessageHeader header
Header.
struct GNUNET_MESSENGER_MessageBody body
Body.
A 256-bit hashcode.
Time for absolute times used by GNUnet, in microseconds.
uint64_t abs_value_us
The actual value.