GNUnet 0.25.2-11-g84e94e98c
 
Loading...
Searching...
No Matches
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--2025 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
36{
37 struct GNUNET_MESSENGER_MemberSession *session;
38
39 if ((! member) || (! pubkey) || (! (member->store)))
40 return NULL;
41
42 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Create new member session!\n");
43
45 session->member = member;
46
47 GNUNET_memcpy (&(session->public_key), pubkey, sizeof(session->public_key));
48
50 get_member_session_key (session),
51 get_member_session_id (session),
52 &(session->context));
53
54 {
56
57 store = get_member_contact_store (member->store);
58
59 session->contact = get_store_contact (
60 store,
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;
125 struct GNUNET_CONTAINER_MultiHashMap *completion;
128
129 GNUNET_assert (session);
130
132 "Check session history (%s) for completion.\n",
134
135 if (! session->messages.tail)
136 {
137 session->completed = GNUNET_YES;
138 goto completion;
139 }
140 else if (GNUNET_YES == session->completed)
141 goto completion;
142
143 start = &(session->messages.head->hash);
144 end = &(session->messages.tail->hash);
145
146 msg_store = get_srv_room_message_store (get_session_room (session));
148
149 if (! completion)
150 goto completion;
151
152 init_list_messages (&level);
153 add_to_list_messages (&level, end);
154
156
157 while (level.head)
158 {
159 struct GNUNET_MESSENGER_ListMessage *element;
160
161 for (element = level.head; element; element = element->next)
162 {
163 const struct GNUNET_MESSENGER_MessageLink *link;
164
166 msg_store, &(element->hash),
167 GNUNET_NO);
168
169 if (! link)
170 continue;
171
173 link->first)))
174 {
175 add_to_list_messages (&list, &(link->first));
176 GNUNET_CONTAINER_multihashmap_put (completion, &(link->first), NULL,
178 }
179
180 if ((GNUNET_YES == link->multiple) &&
182 link->second)
183 )))
184 {
185 add_to_list_messages (&list, &(link->second));
186 GNUNET_CONTAINER_multihashmap_put (completion, &(link->second), NULL,
188 }
189 }
190
191 clear_list_messages (&level);
192
193 for (element = list.head; element; element = element->next)
194 {
195 if (GNUNET_YES != check_member_session_history (session, &(element->hash),
196 GNUNET_YES))
197 continue;
198
199 if (0 == GNUNET_CRYPTO_hash_cmp (&(element->hash), start))
200 {
201 session->completed = GNUNET_YES;
202 break;
203 }
204 }
205
206 if (GNUNET_YES != session->completed)
207 copy_list_messages (&level, &list);
208
210 }
211
213
214completion:
216 {
217 struct GNUNET_MESSENGER_MemberStore *member_store;
218 struct GNUNET_MESSENGER_ContactStore *store;
219
220 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Completed session history (%s)\n",
222
223 member_store = get_session_member_store (session);
224 store = get_member_contact_store (member_store);
225
226 if ((session->contact) && (GNUNET_YES == decrease_contact_rc (
227 session->contact)))
229 store,
230 session->contact,
232
233 session->contact = NULL;
234 }
235}
236
237
240 const struct GNUNET_HashCode *key,
241 void *value)
242{
244
245 GNUNET_assert ((cls) && (key));
246
247 next = cls;
248
251
252 return GNUNET_YES;
253}
254
255
258 const struct GNUNET_MESSENGER_Message *message,
259 const struct GNUNET_HashCode *hash)
260{
261 struct GNUNET_MESSENGER_MemberStore *store;
263
264 if ((! session) || (! message) || (! hash))
265 return NULL;
266
269
270 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Switch member session!\n");
271
272 store = get_session_member_store (session);
274
275 if (GNUNET_MESSENGER_KIND_ID == message->header.kind)
276 {
277 next->member = add_store_member (store,
278 &(message->body.id.id));
279 if (! next->member)
280 {
282 "Failed to switch member session to ID: %s\n",
283 GNUNET_sh2s (&(message->body.id.id)));
284
286 return NULL;
287 }
288 }
289 else
290 next->member = session->member;
291
292 if (GNUNET_MESSENGER_KIND_KEY == message->header.kind)
293 GNUNET_memcpy (&(next->public_key), &(message->body.key.key),
294 sizeof(next->public_key));
295 else
297 sizeof(next->public_key));
298
302 &(next->context));
303
310
312
313 if (! (next->contact))
314 {
316 return NULL;
317 }
318
320
323 GNUNET_NO);
324
326 next);
327
329 copy_list_messages (&(next->messages), &(session->messages));
330
331 session->next = next;
332 next->prev = session;
333 next->next = NULL;
334
336
337 session->closed = GNUNET_YES;
340
342
343 return next;
344}
345
346
347void
349{
350 struct GNUNET_MESSENGER_MemberStore *store;
351 struct GNUNET_MESSENGER_Contact *contact;
352
353 GNUNET_assert (session);
354
356
357 clear_list_messages (&(session->messages));
358
359 store = get_session_member_store (session);
360 contact = get_member_session_contact (session);
361
362 if ((contact) && (GNUNET_YES == decrease_contact_rc (contact)))
365 contact,
367
368 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Free member session!\n");
369 GNUNET_free (session);
370}
371
372
375 const struct GNUNET_HashCode *hash)
376{
377 struct GNUNET_MESSENGER_Contact *contact;
378
379 GNUNET_assert ((session) && (hash));
380
381 {
382 struct GNUNET_MESSENGER_MemberStore *member_store;
383 struct GNUNET_MESSENGER_ContactStore *store;
384
385 member_store = get_session_member_store (session);
386 store = get_member_contact_store (member_store);
387 contact = get_store_contact (
388 store,
391 }
392
393 if (! contact)
394 return GNUNET_SYSERR;
395
396 if (contact == session->contact)
397 goto clear_messages;
398
399 session->contact = contact;
400 increase_contact_rc (session->contact);
401
402clear_messages:
403 clear_list_messages (&(session->messages));
404 add_to_list_messages (&(session->messages), hash);
405
406 session->next = NULL;
407 session->closed = GNUNET_NO;
408 session->completed = GNUNET_NO;
409
410 return GNUNET_OK;
411}
412
413
414void
416{
417 GNUNET_assert (session);
418
419 session->closed = GNUNET_YES;
421}
422
423
426{
427 GNUNET_assert (session);
428
429 return session->closed;
430}
431
432
436{
437 GNUNET_assert (session);
438
439 return session->completed;
440}
441
442
445{
446 GNUNET_assert (session);
447
448 if (session->prev)
449 return get_member_session_start (session->prev);
450
451 return session->start;
452}
453
454
455const struct GNUNET_HashCode*
457{
458 const struct GNUNET_MESSENGER_MemberStore *store;
459
460 GNUNET_assert ((session) && (session->member));
461
462 store = get_session_member_store (session);
463
464 return get_member_store_key (store);
465}
466
467
468const struct GNUNET_ShortHashCode*
470{
471 GNUNET_assert (session);
472
473 return get_member_id (session->member);
474}
475
476
480{
481 GNUNET_assert (session);
482
483 return &(session->public_key);
484}
485
486
487const struct GNUNET_HashCode*
490{
491 GNUNET_assert (session);
492
493 return &(session->context);
494}
495
496
499{
500 GNUNET_assert (session);
501
502 return session->contact;
503}
504
505
509 const struct GNUNET_MESSENGER_Message *message,
510 const struct GNUNET_HashCode *hash)
511{
512 GNUNET_assert ((session) && (message) && (hash));
513
515 {
516 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Check message (%s) using history!\n",
517 GNUNET_h2s (hash));
518
519 if (GNUNET_YES == check_member_session_history (session, hash, GNUNET_YES))
520 return GNUNET_OK;
521 else
522 return GNUNET_SYSERR;
523 }
524
525 if (0 != GNUNET_memcmp (get_member_session_id (session),
526 &(message->header.sender_id)))
527 return GNUNET_SYSERR;
528
529 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Check message (%s) using key: %s\n",
530 GNUNET_h2s (hash),
533
534 return verify_message (message, hash, get_member_session_public_key (
535 session));
536}
537
538
542 const struct GNUNET_HashCode *hash,
543 enum GNUNET_GenericReturnValue ownership)
544{
545 GNUNET_assert ((session) && (hash));
546
547 if (GNUNET_YES == ownership)
548 return (NULL != GNUNET_CONTAINER_multihashmap_get (session->history, hash)?
550 else
551 return GNUNET_CONTAINER_multihashmap_contains (session->history, hash);
552}
553
554
555static void
557 const struct GNUNET_HashCode *hash,
558 enum GNUNET_GenericReturnValue ownership)
559{
560 GNUNET_assert ((session) && (hash));
561
563 (GNUNET_YES == ownership?
564 session : NULL),
566 && (session->next))
567 update_member_chain_history (session->next, hash, ownership);
568}
569
570
571void
573 const struct GNUNET_MESSENGER_Message *message,
574 const struct GNUNET_HashCode *hash)
575{
576 GNUNET_assert ((session) && (message) && (hash));
577
579 return;
580
582 "Updating sessions history (%s) += (%s)\n",
583 GNUNET_sh2s (get_member_session_id (session)), GNUNET_h2s (hash));
584
585 if (GNUNET_OK == verify_member_session_as_sender (session, message, hash))
586 {
587 if (GNUNET_YES == is_message_session_bound (message))
588 add_to_list_messages (&(session->messages), hash);
589
591 }
592 else
593 update_member_chain_history (session, hash, GNUNET_NO);
594
595 if (GNUNET_YES == session->closed)
597}
598
599
600static void
602 const struct GNUNET_HashCode *hash)
603{
604 GNUNET_assert ((session) && (hash));
605
606 if ((0 < GNUNET_CONTAINER_multihashmap_remove_all (session->history, hash)) &&
607 (session->next))
608 clear_member_session_history (session->next, hash);
609}
610
611
612void
614 const struct GNUNET_HashCode *hash)
615{
616 GNUNET_assert ((session) && (hash));
617
618 clear_member_chain_history (session, hash);
619}
620
621
627
628static void
630 const char *path)
631{
634
635 GNUNET_assert ((session) && (path));
636
637 if (GNUNET_YES != GNUNET_DISK_file_test (path))
638 return;
639
640 {
641 enum GNUNET_DISK_AccessPermissions permission;
642
645 }
646
647 if (! handle)
648 return;
649
651
652 do {
654 ssize_t len;
655
656 len = GNUNET_DISK_file_read (handle, &(entry.hash), sizeof(entry.hash));
657
658 if (len != sizeof(entry.hash))
659 break;
660
661 len = GNUNET_DISK_file_read (handle, &(entry.ownership),
662 sizeof(entry.ownership));
663
664 if (len != sizeof(entry.ownership))
665 break;
666
668 (entry.ownership? session :
669 NULL),
671 } while (status == GNUNET_OK);
672
674}
675
676
677void
679 const char *directory)
680{
681 char *config_file;
682 struct GNUNET_MESSENGER_MemberSession *session;
684
685 GNUNET_assert ((member) && (directory));
686
687 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
688
689 session = NULL;
690
692 goto free_config;
693
695 "Load session configuration of member: %s\n", config_file);
696
698
699 if (! cfg)
700 goto free_config;
701
703 {
705 enum GNUNET_GenericReturnValue key_result;
706 unsigned long long numeric_value;
707 char *key_data;
708
710 "key", &key_data))
711 goto destroy_config;
712
714 ;
715 GNUNET_free (key_data);
716
717 if (GNUNET_OK != key_result)
718 goto destroy_config;
719
720 session = create_member_session (member, &key);
721
723 "start",
724 &numeric_value))
725 session->start.abs_value_us = numeric_value;
726
728 "closed",
729 &numeric_value))
730 session->closed = (GNUNET_YES == numeric_value? GNUNET_YES : GNUNET_NO);
731
733 "completed",
734 &numeric_value))
735 session->completed = (GNUNET_YES == numeric_value? GNUNET_YES :
736 GNUNET_NO);
737 }
738
739destroy_config:
741
742free_config:
744
745 if (! session)
746 return;
747
748 {
749 char *history_file;
750 GNUNET_asprintf (&history_file, "%s%s", directory, "history.map");
751
752 load_member_session_history (session, history_file);
753 GNUNET_free (history_file);
754 }
755
756 {
757 char *messages_file;
758 GNUNET_asprintf (&messages_file, "%s%s", directory, "messages.list");
759
760 load_list_messages (&(session->messages), messages_file);
761 GNUNET_free (messages_file);
762 }
763
764 add_member_session (member, session);
765}
766
767
771{
772 struct GNUNET_MESSENGER_MemberSession *check;
773
774 if (! next)
775 return NULL;
776
777 for (check = next; check; check = check->next)
778 if (check == session)
779 return NULL;
780
781 return next;
782}
783
784
785void
787 const char *directory)
788{
790 char *config_file;
791
792
793 GNUNET_assert ((session) && (directory));
794
795 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
796
798 goto free_config;
799
801 "Load next session configuration of member: %s\n", config_file);
802
804
805 if (! cfg)
806 goto free_config;
807
809 {
810 struct GNUNET_CRYPTO_BlindablePublicKey next_key;
811 enum GNUNET_GenericReturnValue key_result;
813 char *key_data;
814
816 "next_key",
817 &key_data))
818 goto destroy_config;
819
820 key_result = GNUNET_CRYPTO_blindable_public_key_from_string (key_data, &
821 next_key);
822 GNUNET_free (key_data);
823
824 if (GNUNET_OK != key_result)
825 goto destroy_config;
826
827 if (GNUNET_OK != GNUNET_CONFIGURATION_get_data (cfg, "session", "next_id",
828 &next_id, sizeof(next_id)))
829 goto destroy_config;
830
831 {
832 struct GNUNET_MESSENGER_MemberStore *store;
833 struct GNUNET_MESSENGER_Member *member;
834
836 member = get_store_member (store, &next_id);
837
839 session,
840 member? get_member_session (member, &next_key) : NULL);
841 }
842
843 if (session->next)
844 session->next->prev = session;
845 }
846
847destroy_config:
849
850free_config:
852}
853
854
857 const struct GNUNET_HashCode *key,
858 void *value)
859{
861 unsigned char ownership;
862
863 GNUNET_assert ((cls) && (key));
864
865 handle = cls;
866 ownership = value? GNUNET_YES : GNUNET_NO;
867
869 GNUNET_DISK_file_write (handle, &ownership, sizeof(ownership));
870
871 return GNUNET_YES;
872}
873
874
875static void
877 const char *path)
878{
880
881 GNUNET_assert ((session) && (path));
882
883 {
884 enum GNUNET_DISK_AccessPermissions permission;
885
887
889 path,
891 permission);
892 }
893
894 if (! handle)
895 return;
896
898
900 session->history,
902 handle);
903
906}
907
908
909void
911 const char *directory)
912{
914 char *config_file;
915 char *key_data;
916
917 GNUNET_assert ((session) && (directory));
918
919 GNUNET_asprintf (&config_file, "%s%s", directory, "session.cfg");
920
922 "Save session configuration of member: %s\n", config_file);
923
925
926 if (! cfg)
927 goto free_config;
928
931
932 if (key_data)
933 {
934 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "key", key_data);
935 GNUNET_free (key_data);
936 }
937
938 if (session->next)
939 {
941 session->next);
942
943 char *next_id_data = GNUNET_STRINGS_data_to_string_alloc (next_id,
944 sizeof(*next_id));
945
946 if (next_id_data)
947 {
948 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "next_id",
949 next_id_data);
950 GNUNET_free (next_id_data);
951 }
952
955
956 if (key_data)
957 {
958 GNUNET_CONFIGURATION_set_value_string (cfg, "session", "next_key",
959 key_data);
960 GNUNET_free (key_data);
961 }
962 }
963
964 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "start",
965 session->start.abs_value_us);
966
967 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "closed",
968 session->closed);
969 GNUNET_CONFIGURATION_set_value_number (cfg, "session", "completed",
970 session->completed);
971
974
975free_config:
977
978 {
979 char *history_file;
980 GNUNET_asprintf (&history_file, "%s%s", directory, "history.map");
981
982 save_member_session_history (session, history_file);
983 GNUNET_free (history_file);
984 }
985
986 {
987 char *messages_file;
988 GNUNET_asprintf (&messages_file, "%s%s", directory, "messages.list");
989
990 save_list_messages (&(session->messages), messages_file);
991 GNUNET_free (messages_file);
992 }
993}
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_BlindablePublicKey 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.
void add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session)
Adds a given member session to its member.
struct GNUNET_MESSENGER_MemberSession * get_member_session(const struct GNUNET_MESSENGER_Member *member, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key)
Returns the member session of a member identified by a given public key.
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.
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)
const struct GNUNET_CRYPTO_BlindablePublicKey * get_member_session_public_key(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the public key of a given member session.
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...
struct GNUNET_MESSENGER_MemberSession * create_member_session(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_CRYPTO_BlindablePublicKey *pubkey)
Creates and allocates a new member session of a member with a given public key.
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...
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:1258
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:533
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:710
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:219
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:1451
enum GNUNET_GenericReturnValue GNUNET_DISK_file_close(struct GNUNET_DISK_FileHandle *h)
Close an open file.
Definition disk.c:1332
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:673
@ 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.
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_blindable_public_key_to_string(const struct GNUNET_CRYPTO_BlindablePublicKey *key)
Creates a (Base32) string representation of the public key.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_blindable_public_key_from_string(const char *str, struct GNUNET_CRYPTO_BlindablePublicKey *key)
Parses a (Base32) string representation of the public key.
#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.
@ 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:807
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.
struct GNUNET_MESSENGER_Contact * get_store_contact(struct GNUNET_MESSENGER_ContactStore *store, const struct GNUNET_HashCode *context, const struct GNUNET_CRYPTO_BlindablePublicKey *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.
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_BlindablePublicKey *pubkey)
Moves a contact from the store to another location matching a given public key and member context.
enum GNUNET_GenericReturnValue verify_message(const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, const struct GNUNET_CRYPTO_BlindablePublicKey *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.
Internal representation of the hash map.
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_CRYPTO_BlindablePublicKey public_key
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_BlindablePublicKey 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.