GNUnet 0.28.0-dev.2-27-gc87478450
 
Loading...
Searching...
No Matches
gnunet-service-messenger_room.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2026 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 */
26#include "gnunet_common.h"
28#include "gnunet_pils_service.h"
29#include "gnunet_util_lib.h"
31#include "platform.h"
33
44
45#include "messenger_api_util.h"
46#include <stdint.h>
47#include <string.h>
48
49static void
51
52static void
54 char **dir)
55{
56 GNUNET_assert ((room) && (dir));
57
58 if (room->service->dir)
59 GNUNET_asprintf (dir, "%s%s%c%s%c", room->service->dir, "rooms",
62 else
63 *dir = NULL;
64}
65
66
69 const struct GNUNET_HashCode *key)
70{
71 struct GNUNET_MESSENGER_SrvRoom *room;
72 char *room_dir;
73
74 GNUNET_assert ((handle) && (key));
75
76 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Create new room: %s\n",
77 GNUNET_h2s (key));
78
80
81 room->service = handle->service;
82 room->host = handle;
83 room->sync = NULL;
84 room->port = NULL;
85
86 GNUNET_memcpy (&(room->key), key, sizeof(struct GNUNET_HashCode));
87
89
90 get_room_data_subdir (room, &room_dir);
91
93
98
99 GNUNET_free (room_dir);
100
101 init_list_tunnels (&(room->basement));
102 init_message_state (&(room->state));
103
104 room->peer_message = NULL;
105
106 init_list_messages (&(room->handling));
107 room->idle = NULL;
108
109 if (room->service->dir)
110 load_srv_room (room);
111
114
115 return room;
116}
117
118
122 void *value)
123{
124 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
125
127
128 tunnel = value;
129
130 destroy_tunnel (tunnel);
131 return GNUNET_YES;
132}
133
134
137 GNUNET_UNUSED const struct GNUNET_HashCode *key,
138 void *value)
139{
140 struct GNUNET_MESSENGER_SrvRoomSignature *signature;
141
143
144 signature = value;
145
146 if (signature->operation)
147 GNUNET_PILS_cancel (signature->operation);
148
149 if (signature->message)
150 destroy_message (signature->message);
151
152 if (signature->envelope)
153 GNUNET_free (signature->envelope);
154
155 GNUNET_free (signature);
156 return GNUNET_YES;
157}
158
159
160static void
162
163static void
165
166void
215
216
219{
220 GNUNET_assert (room);
221
222 return &(room->peer_store);
223}
224
225
233
234
237{
238 GNUNET_assert (room);
239
240 return &(room->message_store);
241}
242
243
251
252
256 struct GNUNET_MESSENGER_SrvTunnel *tunnel)
257{
258 if ((! handle) || (! is_tunnel_connected (tunnel)))
259 return GNUNET_NO;
260
262 room->service));
263}
264
265
266static void*
268 struct GNUNET_CADET_Channel *channel,
269 const struct GNUNET_PeerIdentity *source)
270{
271 struct GNUNET_MESSENGER_SrvRoom *room;
272 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
273
274 GNUNET_assert ((cls) && (channel) && (source));
275
276 room = cls;
277
279 "New incoming connection to room (%s) from peer: %s\n",
281
282 tunnel = create_tunnel (room, source);
283
284 if ((tunnel) &&
286 tunnel,
288 {
289 destroy_tunnel (tunnel);
290 tunnel = NULL;
291 }
292
293 if (! tunnel)
294 {
296 return NULL;
297 }
298
299 bind_tunnel (tunnel, channel);
300
302 "New tunnel in room (%s) established to peer: %s\n",
304
305 if (GNUNET_YES == send_room_info (room, room->host, tunnel))
306 return tunnel;
307
308 disconnect_tunnel (tunnel);
309
311 tunnel))
312 destroy_tunnel (tunnel);
313
314 return NULL;
315}
316
317
321 struct GNUNET_MESSENGER_Member *member,
322 const struct GNUNET_ShortHashCode *id)
323{
324 const struct GNUNET_ShortHashCode *member_id;
325
326 GNUNET_assert ((room) && (handle) && (member));
327
328 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Joining room: %s (%s)\n", GNUNET_h2s (
329 get_srv_room_key (room)),
330 GNUNET_sh2s (get_member_id (member)));
331
332 member_id = get_member_id (member);
333
335 member_id))
336 return GNUNET_NO;
337
338 {
340 if ((! id) || (0 != GNUNET_memcmp (id, member_id)))
342 else
344
345 notify_srv_handle_member_id (handle, room, member_id, reset);
346 }
347
348 return GNUNET_YES;
349}
350
351
355{
356 struct GNUNET_MESSENGER_MemberStore *member_store;
357 const struct GNUNET_ShortHashCode *member_id;
358 struct GNUNET_MESSENGER_Member *member;
359
360 member_store = get_srv_room_member_store (room);
362 member = add_store_member (member_store, member_id);
363
364 if (GNUNET_NO == join_room (room, handle, member, member_id))
365 return GNUNET_NO;
366
367 return GNUNET_YES;
368}
369
370
374{
375 GNUNET_assert (room);
376
377 if (handle)
378 room->host = handle;
379
380 if (room->port)
381 {
383 "Port of room (%s) was already open!\n",
385
386 if (! handle)
387 return GNUNET_YES;
388
389 return join_room_locally (room, handle);
390 }
391
392 {
395 struct GNUNET_HashCode port;
396
398 tunnel_message,
400 struct
402 ,
404
405 cadet = get_srv_room_cadet (room);
406
408 &(key.hash),
409 get_srv_room_key (room),
410 sizeof (key.hash));
411
412 if ((key.code.feed_bit) && (! key.code.group_bit))
413 {
415 "Opening port of personal room containing private feeds failed!");
416 return GNUNET_SYSERR;
417 }
418
420 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Trying to open CADET port: %s\n",
421 GNUNET_h2s (&port));
422
424 room, NULL, callback_tunnel_disconnect,
425 handlers);
426 }
427
428 if (room->port)
429 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Port of room (%s) was opened!\n",
431 else
433 "Port of room (%s) could not be opened!\n",
435
436 if (! handle)
437 goto complete_opening;
438
439 {
440 struct GNUNET_MESSENGER_MemberStore *member_store;
441 const struct GNUNET_ShortHashCode *member_id;
442 struct GNUNET_MESSENGER_Member *member;
443
444 member_store = get_srv_room_member_store (room);
446 member = add_store_member (member_store, member_id);
447
448 if ((GNUNET_NO == join_room (room, handle, member, member_id)) &&
449 (room->port))
450 {
452 "You could not join the room, therefore it keeps closed!\n");
453
454 close_srv_room (room);
455 return GNUNET_NO;
456 }
457 }
458
459complete_opening:
460 if (! room->port)
461 return GNUNET_NO;
462
463 {
464 struct GNUNET_MESSENGER_Message *message;
465 message = create_message_peer (room->service);
466
467 if (! message)
468 {
470 "Peer message could not be sent!\n");
471 return GNUNET_NO;
472 }
473
474 return send_srv_room_message (room, handle, message);
475 }
476}
477
478
479static void
481{
482 struct GNUNET_PeerIdentity peer;
483
484 GNUNET_assert (room);
485
486 if (! room->port)
487 return;
488
489 if ((room->peer_message) &&
490 (GNUNET_OK == get_service_peer_identity (room->service, &peer)))
491 {
492 struct GNUNET_MESSENGER_Message *message;
493
494 message = create_message_miss (&peer);
495
496 if (! message)
498 "Sending miss message about peer failed: %s\n",
499 GNUNET_h2s (&(room->key)));
500 else
501 send_srv_room_message (room, room->host, message);
502 }
503
505 room->port = NULL;
506}
507
508
512 const struct GNUNET_PeerIdentity *door)
513{
514 struct GNUNET_PeerIdentity peer;
515 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
517
518 GNUNET_assert ((room) && (handle) && (door));
519
520 if ((GNUNET_is_zero (door)) ||
522 (0 == GNUNET_memcmp (&peer, door))))
523 return join_room_locally (room, handle);
524
526
527 if (! tunnel)
528 {
529 tunnel = create_tunnel (room, door);
530
532 tunnel,
534 {
536 "You could not connect to that door!\n");
537 destroy_tunnel (tunnel);
538 return GNUNET_NO;
539 }
540 }
541
542 ret = connect_tunnel (tunnel);
543
544 if (GNUNET_YES != ret)
545 {
547 destroy_tunnel (tunnel);
548
549 if (GNUNET_SYSERR == ret)
550 {
552 "Connection failure during entrance!\n");
553 return GNUNET_NO;
554 }
555 }
556
557 return join_room_locally (room, handle);
558}
559
560
561static void
563 const struct GNUNET_PeerIdentity *identity,
564 const struct GNUNET_CRYPTO_EddsaSignature *
565 peer_signature)
566{
567 struct GNUNET_MESSENGER_SrvRoomSignature *signature;
568 struct GNUNET_MessageHeader *header;
569 uint16_t padded_length;
570 char *buffer;
571
572 GNUNET_assert ((cls) && (peer_signature));
573
574 signature = cls;
575
577 "Signature operation with peer identity (%s) completed: %s\n",
579 GNUNET_h2s (&(signature->hash)));
580
581 GNUNET_assert (signature->operation);
582 signature->operation = NULL;
583
584 GNUNET_assert ((signature->room) && (signature->message) && (signature->
585 envelope));
586
588 peer_signature, sizeof (*peer_signature));
589
590 header = (struct GNUNET_MessageHeader *) GNUNET_MQ_env_get_msg (signature->
591 envelope);
592 padded_length = header->size - sizeof (*header);
593 buffer = (char *) &(header[1]);
594
595 encode_message_signature (signature->message, padded_length, buffer);
596
597 GNUNET_assert (signature->callback);
598 signature->callback (signature->closure,
599 signature->room,
600 signature->message,
601 signature->envelope,
602 &(signature->hash));
603
605 signatures,
606 &(signature->hash),
607 signature))
608 {
609 signature->message = NULL;
610 signature->envelope = NULL;
611
613 "Signature operation could not be removed: %s\n",
614 GNUNET_h2s (&(signature->hash)));
615 return;
616 }
617
618 GNUNET_free (signature);
619}
620
621
624 struct GNUNET_MESSENGER_Message *message,
626 void *closure)
627{
628 struct GNUNET_MESSENGER_SrvRoomSignature *signature;
630
631 GNUNET_assert ((room) && (message) && (callback));
632
633 if (GNUNET_YES != is_peer_message (message))
634 {
635 struct GNUNET_MQ_Envelope *envelope;
636 struct GNUNET_HashCode hash;
637
638 envelope = pack_message (message, &hash,
640
641 if (! envelope)
642 {
644 "Packing message into envelope failed: %s\n",
646 return GNUNET_SYSERR;
647 }
648
649 callback (closure, room, message, envelope, &hash);
650 return GNUNET_YES;
651 }
652
653 if (GNUNET_YES == is_epoch_message (message))
656 else
659
661 {
662 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Peer identity is missing!\n");
663 return GNUNET_SYSERR;
664 }
665
667 get_message_state_chain_hash (&(room->state), &(message->header.previous));
668
670 {
671 const struct GNUNET_MESSENGER_MessageStore *store;
672 const struct GNUNET_HashCode *epoch;
673
674 store = get_srv_room_message_store (room);
675 epoch = get_store_message_epoch (store, &(message->header.previous));
676
677 if (epoch)
678 GNUNET_memcpy (&(message->body.merge.epochs[0]), epoch,
679 sizeof (struct GNUNET_HashCode));
680
681 epoch = get_store_message_epoch (store, &(message->body.merge.previous));
682
683 if (epoch)
684 GNUNET_memcpy (&(message->body.merge.epochs[1]), epoch,
685 sizeof (struct GNUNET_HashCode));
686 }
687
689 GNUNET_assert (signature);
690
691 signature->room = room;
692 signature->message = message;
693
695 "Packing message with peer signature: %s\n",
696 GNUNET_sh2s (&(signature->message->header.sender_id)));
697
699 signature->envelope = pack_message (signature->message, &(signature->hash),
701
702 if (! signature->envelope)
703 {
705 "Packing message into envelope failed: %s\n",
707 ;
708 destroy_message (signature->message);
709 GNUNET_free (signature);
710 return GNUNET_SYSERR;
711 }
712
713 signature->callback = callback;
714 signature->closure = closure;
715
716 signature->operation = sign_message_by_peer (signature->message,
717 &(signature->hash),
718 room->service->pils,
720 signature);
721
722 if (! signature->operation)
723 {
725 "Signing message by peer identity (%s) failed: %s\n",
727 GNUNET_h2s (&(signature->hash)));
728
729 destroy_message (signature->message);
730 GNUNET_free (signature->envelope);
731 GNUNET_free (signature);
732 return GNUNET_SYSERR;
733 }
734
736 &(signature->hash),
737 signature,
739 {
741 "Signature operation could not be stored: %s\n",
742 GNUNET_h2s (&(signature->hash)));
743
744 iterate_cancel_signature (NULL, &(signature->hash),
745 signature);
746 return GNUNET_SYSERR;
747 }
748
749 return GNUNET_YES;
750}
751
752
755 struct GNUNET_MESSENGER_Message *message,
756 const struct GNUNET_HashCode *hash);
757
758void
760 const struct GNUNET_MESSENGER_Message *message,
761 const struct GNUNET_HashCode *hash);
762
763static void
765 struct GNUNET_MESSENGER_SrvRoom *room,
766 struct GNUNET_MESSENGER_Message *message,
767 struct GNUNET_MQ_Envelope *envelope,
768 const struct GNUNET_HashCode *hash)
769{
771 enum GNUNET_GenericReturnValue new_message;
772
773 GNUNET_assert ((cls) && (room) && (message) && (envelope) && (hash));
774
775 handle = cls;
776
777 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending room message: %s\n",
778 GNUNET_h2s (hash));
779
780 send_srv_room_envelope (room, NULL, envelope, hash);
781 new_message = update_room_message (room, message, hash);
782
783 if (GNUNET_YES != new_message)
784 {
786 "Sending duplicate message failed: %s\n",
787 GNUNET_h2s (hash));
788 return;
789 }
790
791 switch (message->header.kind)
792 {
794 send_message_join (room, handle, message, hash);
795 break;
797 send_message_key (room, handle, message, hash);
798 break;
800 send_message_peer (room, handle, message, hash);
801 break;
803 send_message_id (room, handle, message, hash);
804 break;
806 send_message_request (room, handle, message, hash);
807 break;
808 default:
809 break;
810 }
811
812 callback_room_handle_message (room, message, hash);
813
814 if ((GNUNET_MESSENGER_KIND_MERGE == message->header.kind) &&
815 (room->sync == handle) &&
817 room->key))))
819}
820
821
825 struct GNUNET_MESSENGER_Message *message)
826{
827 GNUNET_assert ((room) && (handle));
828
829 if (! message)
830 return GNUNET_NO;
831
833 "Sending message from handle in room: %s (%s)\n",
834 GNUNET_h2s (&(room->key)),
836
837 return sign_srv_room_message (room, message,
839 handle);
840}
841
842
852
856 void *value)
857{
858 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
859 struct GNUNET_MESSENGER_ClosureSendRoom *closure;
860 struct GNUNET_MQ_Envelope *envelope;
861
862 GNUNET_assert ((cls) && (value));
863
864 closure = cls;
865 tunnel = value;
866
867 GNUNET_assert ((closure->envelope) && (closure->hash));
868
869 if ((! is_tunnel_connected (tunnel)) ||
871 return GNUNET_YES;
872
873 if (tunnel == closure->exclude)
874 return GNUNET_YES;
875
876 envelope = GNUNET_MQ_env_copy (closure->envelope);
877
878 if (envelope)
879 send_tunnel_envelope (tunnel, envelope, closure->hash);
880
881 return GNUNET_YES;
882}
883
884
885void
887 struct GNUNET_MESSENGER_SrvTunnel *tunnel,
888 struct GNUNET_MQ_Envelope *envelope,
889 const struct GNUNET_HashCode *hash)
890{
892
893 GNUNET_assert ((room) && (envelope));
894
895 closure.exclude = tunnel;
896 closure.envelope = envelope;
897 closure.hash = hash;
898
901 &closure);
902
904}
905
906
907void
909 struct GNUNET_MESSENGER_SrvTunnel *tunnel)
910{
911 struct GNUNET_MESSENGER_MessageStore *message_store;
912 const struct GNUNET_MESSENGER_Message *message;
913
914 if (! room->peer_message)
915 return;
916
917 message_store = get_srv_room_message_store (room);
918 message = get_store_message (message_store, room->peer_message);
919
920 if (! message)
921 {
923 room->peer_message = NULL;
924 return;
925 }
926
927 if (tunnel)
928 forward_tunnel_message (tunnel, message, room->peer_message);
929}
930
931
935{
936 const struct GNUNET_HashCode *hash;
937 struct GNUNET_MESSENGER_Message *message;
938
939 GNUNET_assert (room);
940
941 if (! handle)
942 return GNUNET_SYSERR;
943
945 "Merging messages by handle in room: %s\n",
946 GNUNET_h2s (&(room->key)));
947
948 hash = get_message_state_merge_hash (&(room->state));
949
950 if ((! hash) || (GNUNET_is_zero (hash)))
951 return GNUNET_NO;
952
953 message = create_message_merge (hash);
954
955 if (! message)
956 {
958 "Merging messages failed: %s\n",
959 GNUNET_h2s (&(room->key)));
960 return GNUNET_SYSERR;
961 }
962
963 return send_srv_room_message (room, handle, message);
964}
965
966
969 struct GNUNET_MESSENGER_SrvMemberSession *session,
970 const struct GNUNET_HashCode *hash,
971 const struct GNUNET_TIME_Relative delay)
972{
973 const struct GNUNET_MESSENGER_Message *message;
974 struct GNUNET_TIME_Relative forever;
975
976 GNUNET_assert ((room) && (session) && (hash));
977
979
980 if (0 == GNUNET_memcmp (&forever, &delay))
981 {
983 "Deletion is delayed forever: operation is impossible!\n");
984 return GNUNET_SYSERR;
985 }
986
987 {
988 struct GNUNET_MESSENGER_MessageStore *message_store;
989
990 message_store = get_srv_room_message_store (room);
991 message = get_store_message (message_store, hash);
992 }
993
994 if (! message)
995 return GNUNET_YES;
996
997 if (GNUNET_YES != check_member_session_history (session, hash, GNUNET_YES))
998 {
1000 "Unpermitted request for deletion by member (%s) of message (%s)!\n",
1002 hash));
1003
1004 return GNUNET_NO;
1005 }
1006
1007 {
1008 struct GNUNET_MESSENGER_OperationStore *operation_store;
1009
1010 operation_store = get_srv_room_operation_store (room);
1011
1012 if (GNUNET_OK != use_store_operation (operation_store, hash,
1014 {
1016 "Deletion has failed: operation denied!\n");
1017 return GNUNET_SYSERR;
1018 }
1019 }
1020
1021 return GNUNET_YES;
1022}
1023
1024
1025struct GNUNET_CADET_Handle*
1027{
1028 GNUNET_assert (room);
1029
1030 return room->service->cadet;
1031}
1032
1033
1034const struct GNUNET_HashCode*
1036{
1037 GNUNET_assert (room);
1038
1039 return &(room->key);
1040}
1041
1042
1043const struct GNUNET_MESSENGER_SrvTunnel*
1045 const struct GNUNET_PeerIdentity *peer)
1046{
1047 GNUNET_assert ((room) && (peer));
1048
1050}
1051
1052
1053static enum GNUNET_GenericReturnValue
1055 const struct GNUNET_HashCode *hash,
1057 session,
1059 void *cls)
1060{
1061 struct GNUNET_MESSENGER_MessageStore *message_store;
1062 const struct GNUNET_MESSENGER_MessageLink *link;
1063 const struct GNUNET_MESSENGER_Message *message;
1064
1065 GNUNET_assert ((room) && (hash) && (session));
1066
1067 message_store = get_srv_room_message_store (room);
1068 link = get_store_message_link (message_store, hash, GNUNET_YES);
1069
1070 if (! link)
1071 goto forward;
1072
1074 "Requesting link of message with hash: %s\n",
1075 GNUNET_h2s (hash));
1076
1077 {
1079 result = request_room_message_step (room, &(link->first), session,
1080 callback, cls);
1081
1082 if ((GNUNET_YES == link->multiple) &&
1083 (GNUNET_YES == request_room_message_step (room, &(link->second),
1084 session, callback, cls)))
1085 return GNUNET_YES;
1086 else
1087 return result;
1088 }
1089
1090forward:
1091 message = get_store_message (message_store, hash);
1092
1093 if (! message)
1094 {
1096 "Requested message is missing in local storage: %s\n",
1097 GNUNET_h2s (hash));
1098 return GNUNET_NO;
1099 }
1100
1101 if (GNUNET_YES == is_epoch_message (message))
1102 goto skip_member_session;
1103
1104 if (GNUNET_YES != check_member_session_history (session, hash, GNUNET_NO))
1105 {
1107 "Unpermitted request for access by member (%s) of message (%s)!\n",
1109 GNUNET_h2s (hash));
1110 return GNUNET_YES;
1111 }
1112
1113skip_member_session:
1114 if (callback)
1115 callback (cls, room, message, hash);
1116
1117 return GNUNET_YES;
1118}
1119
1120
1123 const struct GNUNET_HashCode *hash,
1125 session,
1127 void *cls)
1128{
1130
1131 GNUNET_assert ((room) && (hash));
1132
1133 result = request_room_message_step (room, hash, session, callback, cls);
1134
1135 if ((GNUNET_NO == result) && (callback))
1136 callback (cls, room, NULL, hash);
1137
1138 return result;
1139}
1140
1141
1142static void
1144{
1145 struct GNUNET_MESSENGER_SrvRoom *room;
1146 struct GNUNET_MESSENGER_OperationStore *operation_store;
1147 const struct GNUNET_HashCode *hash;
1148
1149 GNUNET_assert (cls);
1150
1151 room = cls;
1152 room->idle = NULL;
1153
1154 operation_store = get_srv_room_operation_store (room);
1155 hash = get_message_state_merge_hash (&(room->state));
1156
1157 if ((hash) && (! GNUNET_is_zero (hash)) &&
1159 hash)))
1161 operation_store,
1162 hash,
1165
1170 cls);
1171}
1172
1173
1174void
1176 const struct
1178 const struct GNUNET_ShortHashCode *member_id,
1180{
1181 struct GNUNET_MESSENGER_MemberStore *member_store;
1182 struct GNUNET_MESSENGER_Member *member;
1183 struct GNUNET_MESSENGER_ListHandles *handles;
1184 struct GNUNET_MESSENGER_ListHandle *element;
1185
1186 GNUNET_assert ((room) && (public_key) && (member_id));
1187
1188 member_store = get_srv_room_member_store (room);
1189 member = get_store_member (member_store, member_id);
1190
1191 if ((! member) || (1 >= GNUNET_CONTAINER_multihashmap_size (
1192 member->sessions)))
1193 return;
1194
1195 handles = &(room->service->handles);
1196
1197 for (element = handles->head; element; element = element->next)
1198 {
1201 struct GNUNET_MESSENGER_SrvMemberSession *session;
1202
1204 get_srv_room_key (room));
1205
1206 if ((! handle_member_id) ||
1207 (0 != GNUNET_memcmp (member_id, handle_member_id)))
1208 continue;
1209
1210 pubkey = get_srv_handle_key (element->handle);
1211
1212 if (0 == GNUNET_memcmp (public_key, pubkey))
1213 continue;
1214
1215 session = get_member_session (member, pubkey);
1216
1217 if (! session)
1218 continue;
1219
1220 {
1222 start = get_member_session_start (session);
1223
1224 if (GNUNET_TIME_relative_get_zero_ ().rel_value_us !=
1226 continue;
1227 }
1228
1229 {
1230 struct GNUNET_ShortHashCode random_id;
1231 generate_free_member_id (&random_id, member_store->members);
1232
1234 element->handle,
1235 room,
1236 &random_id,
1237 GNUNET_NO);
1238 }
1239 }
1240}
1241
1242
1243void
1245{
1246 struct GNUNET_MESSENGER_ListTunnel *element;
1247 struct GNUNET_PeerIdentity peer;
1248 size_t count;
1249 size_t src;
1250 size_t dst;
1251
1252 GNUNET_assert (room);
1253
1254 if (GNUNET_OK != get_service_peer_identity (room->service, &peer))
1255 return;
1256
1257 count = count_of_tunnels (&(room->basement));
1258
1259 if (! find_list_tunnels (&(room->basement), &peer, &src))
1260 return;
1261
1262 if ((count > room->service->min_routers) &&
1263 (GNUNET_NO == is_srv_handle_routing (room->host, &(room->key))) &&
1265 &peer,
1267 {
1268 close_srv_room (room);
1269 return;
1270 }
1271
1272 element = room->basement.head;
1273 dst = 0;
1274
1275 while (element)
1276 {
1277 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
1278
1279 GNUNET_PEER_resolve (element->peer, &peer);
1280
1282
1283 if (! tunnel)
1284 {
1285 element = remove_from_list_tunnels (&(room->basement), element);
1286 continue;
1287 }
1288
1289 if (GNUNET_YES == required_connection_between (count, src, dst))
1290 {
1291 if (GNUNET_SYSERR == connect_tunnel (tunnel))
1292 {
1293 element = remove_from_list_tunnels (&(room->basement), element);
1294 continue;
1295 }
1296 }
1297 else
1298 disconnect_tunnel (tunnel);
1299
1300 element = element->next;
1301 dst++;
1302 }
1303}
1304
1305
1306uint32_t
1313
1314
1315uint32_t
1317{
1318 uint32_t flags;
1319
1321
1323
1326
1327 return flags;
1328}
1329
1330
1331static void
1333{
1334 struct GNUNET_MESSENGER_MessageStore *message_store;
1335 struct GNUNET_MESSENGER_MemberStore *member_store;
1336 struct GNUNET_MESSENGER_PeerStore *peer_store;
1337 const struct GNUNET_HashCode *key;
1338
1339 message_store = get_srv_room_message_store (room);
1340 member_store = get_srv_room_member_store (room);
1341 peer_store = get_srv_room_peer_store (room);
1342
1343 key = get_srv_room_key (room);
1344
1346 "Handling room messages: %s\n", GNUNET_h2s (key));
1347
1348 while (room->handling.head)
1349 {
1350 struct GNUNET_MESSENGER_ListMessage *element;
1351 struct GNUNET_MESSENGER_SenderSession session;
1352 const struct GNUNET_MESSENGER_Message *message;
1353 const struct GNUNET_HashCode *epoch;
1354
1355 element = room->handling.head;
1356 message = get_store_message (
1357 message_store, &(element->hash));
1358
1359 if (! message)
1360 goto finish_handling;
1361
1362 if (GNUNET_YES == is_peer_message (message))
1363 {
1364 session.peer = get_store_peer_of (peer_store, message, &(element->hash));
1365
1366 if (! session.peer)
1367 goto finish_handling;
1368 }
1369 else
1370 {
1371 struct GNUNET_MESSENGER_Member *member;
1372
1373 member = get_store_member_of (member_store, message);
1374
1375 if (! member)
1376 goto finish_handling;
1377
1378 session.member = get_member_session_of (member, message,
1379 &(element->hash));
1380
1381 if (! session.member)
1382 goto finish_handling;
1383 }
1384
1385 epoch = get_store_message_epoch (message_store, &(element->hash));
1386
1387 handle_service_message (room->service, room, &session, message,
1388 &(element->hash), epoch, GNUNET_YES);
1389
1390finish_handling:
1392 element);
1393 GNUNET_free (element);
1394 }
1395}
1396
1397
1400 struct GNUNET_MESSENGER_Message *message,
1401 const struct GNUNET_HashCode *hash)
1402{
1403 struct GNUNET_MESSENGER_OperationStore *operation_store;
1404 struct GNUNET_MESSENGER_MessageStore *message_store;
1405 enum GNUNET_GenericReturnValue requested;
1406
1407 GNUNET_assert ((room) && (message) && (hash));
1408
1409 operation_store = get_srv_room_operation_store (room);
1410
1411 requested = (GNUNET_MESSENGER_OP_REQUEST ==
1412 get_store_operation_type (operation_store, hash)?
1414
1415 if (GNUNET_YES == requested)
1416 cancel_store_operation (operation_store, hash);
1417
1418 message_store = get_srv_room_message_store (room);
1419
1420 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Handle a message in room (%s).\n",
1421 GNUNET_h2s (get_srv_room_key (room)));
1422
1423 if (GNUNET_YES == contains_store_message (message_store, hash))
1424 {
1425 destroy_message (message);
1426
1427 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Duplicate message got dropped!\n");
1428 return GNUNET_NO;
1429 }
1430
1431 if (GNUNET_OK != put_store_message (message_store, hash, message))
1432 {
1433 destroy_message (message);
1434
1435 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Storing message failed!\n");
1436 return GNUNET_NO;
1437 }
1438
1439 update_message_state (&(room->state), requested, message, hash);
1440
1441 if ((GNUNET_YES == requested) ||
1442 (GNUNET_MESSENGER_KIND_INFO == message->header.kind) ||
1444 return GNUNET_YES;
1445
1446 if ((GNUNET_MESSENGER_KIND_MERGE == message->header.kind) &&
1448 &(message->body.
1449 merge.previous))
1450 ))
1451 cancel_store_operation (operation_store, &(message->body.merge.previous));
1452
1454 &(message->header.
1455 previous)))
1456 cancel_store_operation (operation_store, &(message->header.previous));
1457
1458 return GNUNET_YES;
1459}
1460
1461
1467
1468static enum GNUNET_GenericReturnValue
1471 public_key,
1473 session)
1474{
1476 struct GNUNET_MESSENGER_Member *member;
1477 struct GNUNET_MESSENGER_Subscription *subscription;
1478
1479 GNUNET_assert ((cls) && (session));
1480
1481 it = cls;
1482 member = session->member;
1483
1484 subscription = get_member_subscription (member, it->discourse);
1485 if (! subscription)
1486 return GNUNET_YES;
1487
1488 if (GNUNET_TIME_absolute_cmp (subscription->start, <, it->start))
1489 it->start = subscription->start;
1490
1491 return GNUNET_YES;
1492}
1493
1494
1495void
1497 const struct GNUNET_ShortHashCode *
1498 discourse)
1499{
1501 struct GNUNET_MESSENGER_MemberStore *member_store;
1502 struct GNUNET_MESSENGER_MessageStore *message_store;
1503
1504 GNUNET_assert ((room) && (discourse));
1505
1506 it.discourse = discourse;
1508
1509 member_store = get_srv_room_member_store (room);
1510
1512
1513 message_store = get_srv_room_message_store (room);
1514
1516 discourse,
1517 it.start);
1518}
1519
1520
1528
1537
1538static enum GNUNET_GenericReturnValue
1540 const struct
1543 session)
1544{
1545 struct GNUNET_MESSENGER_MemberUpdate *update;
1546
1547 GNUNET_assert ((cls) && (session));
1548
1549 update = cls;
1550
1551 update_member_session_history (session, update->message, update->hash);
1552
1553 if (GNUNET_YES == is_member_session_completed (session))
1554 {
1556
1558 "Add member session completion to queue!\n");
1559
1561 element->session = session;
1562
1563 GNUNET_CONTAINER_DLL_insert_tail (update->head, update->tail, element);
1564 }
1565
1566 return GNUNET_YES;
1567}
1568
1569
1570static void
1573
1574void
1576 const struct GNUNET_MESSENGER_Message *message,
1577 const struct GNUNET_HashCode *hash)
1578{
1579 struct GNUNET_MESSENGER_PeerStore *peer_store;
1580 struct GNUNET_MESSENGER_MemberStore *member_store;
1581 struct GNUNET_MESSENGER_SenderSession session;
1582 enum GNUNET_GenericReturnValue start_handle;
1583
1584 GNUNET_assert ((room) && (message) && (hash));
1585
1586 peer_store = get_srv_room_peer_store (room);
1587 member_store = get_srv_room_member_store (room);
1588
1589 if (GNUNET_YES == is_peer_message (message))
1590 {
1591 session.peer = get_store_peer_of (peer_store, message, hash);
1592
1593 if (! session.peer)
1594 {
1596 "Message handling dropped: Peer is missing!\n");
1597 return;
1598 }
1599 }
1600 else
1601 {
1602 struct GNUNET_MESSENGER_Member *member;
1603 member = get_store_member_of (member_store, message);
1604
1605 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for message (%s)\n",
1606 GNUNET_h2s (hash));
1607
1608 if (! member)
1609 {
1611 "Message handling dropped: Member is missing!\n");
1612 return;
1613 }
1614
1615 session.member = get_member_session_of (member, message, hash);
1616
1617 if (! session.member)
1618 {
1620 "Message handling dropped: Session is missing!\n");
1621 return;
1622 }
1623 }
1624
1625 {
1626 struct GNUNET_MESSENGER_MemberUpdate update;
1627 update.message = message;
1628 update.hash = hash;
1629
1630 update.head = NULL;
1631 update.tail = NULL;
1632
1634 member_store,
1636 &update);
1637
1638 while (update.head)
1639 {
1640 struct GNUNET_MESSENGER_SrvMemberSessionCompletion *element = update.head;
1641
1642 remove_room_member_session (room, element->session);
1643
1644 GNUNET_CONTAINER_DLL_remove (update.head, update.tail, element);
1646 "Remove member session completion from queue!\n");
1647
1648 GNUNET_free (element);
1649 }
1650 }
1651
1652 start_handle = room->handling.head ? GNUNET_NO : GNUNET_YES;
1653
1654 add_to_list_messages (&(room->handling), hash);
1655
1656 switch (message->header.kind)
1657 {
1659 handle_message_join (room, &session, message, hash);
1660 break;
1662 handle_message_leave (room, &session, message, hash);
1663 break;
1665 handle_message_key (room, &session, message, hash);
1666 break;
1668 handle_message_peer (room, &session, message, hash);
1669 break;
1671 handle_message_id (room, &session, message, hash);
1672 break;
1674 handle_message_miss (room, &session, message, hash);
1675 break;
1677 handle_message_delete (room, &session, message, hash);
1678 break;
1680 handle_message_connection (room, &session, message, hash);
1681 break;
1683 handle_message_subscribe (room, &session, message, hash);
1684 break;
1685 default:
1686 break;
1687 }
1688
1689 if (GNUNET_YES == start_handle)
1690 handle_room_messages (room);
1691}
1692
1693
1694void
1696{
1697 char *room_dir;
1698
1699 GNUNET_assert (room);
1700
1701 get_room_data_subdir (room, &room_dir);
1702
1703 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Load room from directory: %s\n",
1704 room_dir);
1705
1707 {
1708 char *peers_file;
1709 GNUNET_asprintf (&peers_file, "%s%s", room_dir, "peers.list");
1710
1711 load_peer_store (get_srv_room_peer_store (room), peers_file);
1712 GNUNET_free (peers_file);
1713
1718
1719 {
1720 char *basement_file;
1721 GNUNET_asprintf (&basement_file, "%s%s", room_dir, "basement.list");
1722
1723 load_list_tunnels (&(room->basement), basement_file);
1724 GNUNET_free (basement_file);
1725 }
1726
1727 load_message_state (&(room->state), room_dir);
1728 }
1729
1730 GNUNET_free (room_dir);
1731}
1732
1733
1734void
1736{
1737 char *room_dir;
1738
1739 GNUNET_assert (room);
1740
1741 get_room_data_subdir (room, &room_dir);
1742
1743 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Save room to directory: %s\n",
1744 room_dir);
1745
1746 if ((GNUNET_YES == GNUNET_DISK_directory_test (room_dir, GNUNET_NO)) ||
1748 {
1749 char *peers_file;
1750 GNUNET_asprintf (&peers_file, "%s%s", room_dir, "peers.list");
1751
1752 save_peer_store (get_srv_room_peer_store (room), peers_file);
1753 GNUNET_free (peers_file);
1754
1759
1760 {
1761 char *basement_file;
1762 GNUNET_asprintf (&basement_file, "%s%s", room_dir, "basement.list");
1763
1764 save_list_tunnels (&(room->basement), basement_file);
1765 GNUNET_free (basement_file);
1766 }
1767
1768 save_message_state (&(room->state), room_dir);
1769 }
1770
1771 GNUNET_free (room_dir);
1772}
1773
1774
1775void
1777{
1778 char *room_dir;
1779
1780 GNUNET_assert (room);
1781
1782 get_room_data_subdir (room, &room_dir);
1783
1784 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove room from directory: %s\n",
1785 room_dir);
1786
1789
1790 GNUNET_free (room_dir);
1791}
1792
1793
1794static void
1797{
1798 struct GNUNET_HashCode hash;
1799 char *session_dir;
1800 char *room_dir;
1801
1802 GNUNET_assert ((room) && (session));
1803
1805 "Remove member session from room: %s (%s)\n",
1807 GNUNET_h2s (get_srv_room_key (room)));
1808
1809 remove_member_session (session->member, session);
1810
1811 {
1812 const struct GNUNET_CRYPTO_BlindablePublicKey *public_key;
1813 public_key = get_member_session_public_key (session);
1814
1815 GNUNET_CRYPTO_hash (public_key, sizeof(*public_key), &hash);
1816 }
1817
1818
1819 get_room_data_subdir (room, &room_dir);
1820
1822 &session_dir, "%s%s%c%s%c%s%c%s%c", room_dir,
1823 "members", DIR_SEPARATOR,
1825 "sessions", DIR_SEPARATOR,
1826 GNUNET_h2s (&hash), DIR_SEPARATOR);
1827
1828 GNUNET_free (room_dir);
1829
1830 GNUNET_DISK_directory_remove (session_dir);
1831 GNUNET_free (session_dir);
1832
1833 destroy_member_session (session);
1834}
struct GNUNET_MQ_MessageHandlers handlers[]
Definition 003.c:1
static int forward
Search direction: forward.
Definition gnunet-abd.c:163
static int start
Set if we are to start default services (including ARM).
Definition gnunet-arm.c:38
static int ret
Final status code.
Definition gnunet-arm.c:93
static char * dir
Set to the directory where runtime files are stored.
Definition gnunet-arm.c:88
static uint16_t port
Port number.
Definition gnunet-bcd.c:146
static uint64_t timestamp(void)
Get current timestamp.
struct GNUNET_HashCode key
The key used in the DHT.
static GstElement * source
Appsrc instance into which we write data for the pipeline.
static struct GNUNET_CRYPTO_BlindablePublicKey pubkey
Public key of the zone to look in.
static int reset
Reset argument.
static char * value
Value of the record to add/remove.
static struct GNUNET_IDENTITY_Handle * identity
Which namespace do we publish to? NULL if we do not publish to a namespace.
static int result
Global testing status.
static void destroy_tunnel(void *cls)
This tunnel is no longer used, destroy it.
static struct GNUNET_CADET_Handle * cadet
Handle for cadet.
enum GNUNET_GenericReturnValue required_connection_between(size_t count, size_t src, size_t dst)
Returns GNUNET_YES or GNUNET_NO to determine if the peers of index src and index dst should be connec...
size_t count_of_tunnels(const struct GNUNET_MESSENGER_ListTunnels *tunnels)
Returns the count of peers in a list (typically from the basement of a room).
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...
void notify_srv_handle_member_id(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_ShortHashCode *member_id, enum GNUNET_GenericReturnValue reset)
Notifies the handle that a new member id needs to be used.
const struct GNUNET_CRYPTO_BlindablePublicKey * get_srv_handle_key(const struct GNUNET_MESSENGER_SrvHandle *handle)
Returns the public key of a given handle.
void merge_srv_handle_room_to_sync(struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvRoom *room)
Merges the latest hash from a specific room by a given handle until the message graph of the room is ...
const struct GNUNET_ShortHashCode * get_srv_handle_member_id(const struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key)
Returns the member id of a given handle in a specific room.
enum GNUNET_GenericReturnValue is_srv_handle_routing(const struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key)
Returns whether a given handle has enabled routing for a room using a specific key by opening that ro...
void init_list_messages(struct GNUNET_MESSENGER_ListMessages *messages)
Initializes list of message hashes as empty list.
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_SrvMemberSession * 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.
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_Subscription * get_member_subscription(struct GNUNET_MESSENGER_Member *member, const struct GNUNET_ShortHashCode *discourse)
Returns the active subscription of a given member to a selected discourse.
void remove_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_SrvMemberSession *session)
Removes a given member session from its member.
void update_member_session_history(struct GNUNET_MESSENGER_SrvMemberSession *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.
void destroy_member_session(struct GNUNET_MESSENGER_SrvMemberSession *session)
Destroys a member session and frees its memory fully.
enum GNUNET_GenericReturnValue is_member_session_completed(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns if the given member session has been completed.
const struct GNUNET_ShortHashCode * get_member_session_id(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns the member id of a given member session.
const struct GNUNET_CRYPTO_BlindablePublicKey * get_member_session_public_key(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns the public key of a given member session.
struct GNUNET_TIME_Absolute get_member_session_start(const struct GNUNET_MESSENGER_SrvMemberSession *session)
Returns the timestamp of the member session's start.
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...
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.
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 ...
void save_member_store(struct GNUNET_MESSENGER_MemberStore *store, const char *directory)
Saves members from a member store into a directory.
void load_member_store(struct GNUNET_MESSENGER_MemberStore *store, const char *directory)
Loads members from a directory into a member 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.
void init_member_store(struct GNUNET_MESSENGER_MemberStore *store, struct GNUNET_MESSENGER_SrvRoom *room)
Initializes a member store as fully empty connected to a room.
void clear_member_store(struct GNUNET_MESSENGER_MemberStore *store)
Clears a member store, wipes its content and deallocates its memory.
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.
void handle_message_id(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent id message to change a members id.
void handle_message_delete(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent delete message to delete a specific message from the store.
void handle_message_peer(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent peer message to make changes of the basement in the room.
void handle_message_join(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent join message to make changes of current member information.
void handle_message_key(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent key message to change the key of a member and rearrange the contacts accor...
void handle_message_leave(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent leave message to make changes of current member information.
void handle_message_subscribe(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent subscribe message to subscribe a member to a discourse.
void handle_message_connection(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent connection message to update connection information about a peer.
void handle_message_miss(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SenderSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Handles a received or sent miss message to drop a peer from the basement in the room.
struct GNUNET_MESSENGER_Message * create_message_info(struct GNUNET_MESSENGER_Service *service)
Creates and allocates a new info message containing the hosts service peer identity and version.
struct GNUNET_MESSENGER_Message * create_message_miss(const struct GNUNET_PeerIdentity *peer)
Creates and allocates a new miss message containing the missing peer identity.
struct GNUNET_MESSENGER_Message * create_message_peer(struct GNUNET_MESSENGER_Service *service)
Creates and allocates a new peer message containing a services peer identity.
struct GNUNET_MESSENGER_Message * create_message_merge(const struct GNUNET_HashCode *previous)
Creates and allocates a new merge message containing the hash of a second previous message besides th...
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.
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.
const struct GNUNET_HashCode * get_message_state_merge_hash(const struct GNUNET_MESSENGER_MessageState *state)
void save_message_state(const struct GNUNET_MESSENGER_MessageState *state, const char *path)
void clear_message_state(struct GNUNET_MESSENGER_MessageState *state)
void get_message_state_chain_hash(const struct GNUNET_MESSENGER_MessageState *state, struct GNUNET_HashCode *hash)
void init_message_state(struct GNUNET_MESSENGER_MessageState *state)
void update_message_state(struct GNUNET_MESSENGER_MessageState *state, enum GNUNET_GenericReturnValue requested, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
void load_message_state(struct GNUNET_MESSENGER_MessageState *state, const char *path)
void save_message_store(struct GNUNET_MESSENGER_MessageStore *store)
Saves messages from a message store into its directory.
enum GNUNET_GenericReturnValue contains_store_message(const struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash)
Checks if a message matching a given hash is stored in a message store.
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.
enum GNUNET_GenericReturnValue put_store_message(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_HashCode *hash, struct GNUNET_MESSENGER_Message *message)
Stores a message into the message store.
void clear_message_store(struct GNUNET_MESSENGER_MessageStore *store)
Clears a message store, wipes its content and deallocates its memory.
void cleanup_store_discourse_messages_before(struct GNUNET_MESSENGER_MessageStore *store, const struct GNUNET_ShortHashCode *discourse, const struct GNUNET_TIME_Absolute timestamp)
Cleans up and deletes all discourse messages existing in the message store memory before a certain ti...
void load_message_store(struct GNUNET_MESSENGER_MessageStore *store)
Loads messages from its directory into a message store.
void init_message_store(struct GNUNET_MESSENGER_MessageStore *store, const char *directory)
Initializes a message store as fully empty using a specific directory.
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.
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.
void move_message_store(struct GNUNET_MESSENGER_MessageStore *store, const char *directory)
Moves all storage from a message store from its current directory to a given directory.
void cancel_store_operation(struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash)
Stops any active operation under a given hash in a specific operation store.
void save_operation_store(const struct GNUNET_MESSENGER_OperationStore *store, const char *directory)
Saves operations from an operation store into a directory.
void clear_operation_store(struct GNUNET_MESSENGER_OperationStore *store)
Clears an operation store, stops all operations and deallocates its memory.
void load_operation_store(struct GNUNET_MESSENGER_OperationStore *store, const char *directory)
Loads operations from a directory into an operation store.
enum GNUNET_MESSENGER_OperationType get_store_operation_type(const struct GNUNET_MESSENGER_OperationStore *store, const struct GNUNET_HashCode *hash)
Returns the type of the active operation under a given hash in a specific operation store.
void init_operation_store(struct GNUNET_MESSENGER_OperationStore *store, struct GNUNET_MESSENGER_SrvRoom *room)
Initializes an operation store as fully empty with a given room.
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_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.
void load_peer_store(struct GNUNET_MESSENGER_PeerStore *store, const char *path)
Loads peer identities from a file into a peer store.
void clear_peer_store(struct GNUNET_MESSENGER_PeerStore *store)
Clears a peer store, wipes its content and deallocates its memory.
void save_peer_store(const struct GNUNET_MESSENGER_PeerStore *store, const char *path)
Saves peer identities from a peer store into a file.
void init_peer_store(struct GNUNET_MESSENGER_PeerStore *store, struct GNUNET_MESSENGER_Service *service)
Initializes a peer store as fully empty.
uint32_t get_srv_room_amount_of_tunnels(const struct GNUNET_MESSENGER_SrvRoom *room)
Returns the amount of active tunnels of a given room.
enum GNUNET_GenericReturnValue sign_srv_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_Message *message, GNUNET_MESSENGER_SignedCallback callback, void *closure)
Packs a message depending on its kind into a newly allocated envelope.
static enum GNUNET_GenericReturnValue iterate_destroy_tunnels(void *cls, const struct GNUNET_PeerIdentity *key, void *value)
const struct GNUNET_MESSENGER_SrvTunnel * get_srv_room_tunnel(const struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *peer)
Returns a tunnel inside of a room leading towards a given peer if such a tunnel exists,...
static void get_room_data_subdir(struct GNUNET_MESSENGER_SrvRoom *room, char **dir)
static enum GNUNET_GenericReturnValue join_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_Member *member, const struct GNUNET_ShortHashCode *id)
enum GNUNET_GenericReturnValue update_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
static enum GNUNET_GenericReturnValue iterate_update_member_sessions(void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
struct GNUNET_MESSENGER_SrvRoom * create_srv_room(struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_HashCode *key)
Creates and allocates a new room for a handle with a given key.
void save_srv_room(struct GNUNET_MESSENGER_SrvRoom *room)
Saves the configuration for a given room of a service which contains the last messages hash and the r...
void rebuild_srv_room_basement_structure(struct GNUNET_MESSENGER_SrvRoom *room)
Rebuilds the decentralized structure for a room by ensuring all required connections are made dependi...
struct GNUNET_MESSENGER_MessageStore * get_srv_room_message_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used message store of a given room.
static void * callback_room_connect(void *cls, struct GNUNET_CADET_Channel *channel, const struct GNUNET_PeerIdentity *source)
static enum GNUNET_GenericReturnValue send_room_info(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, struct GNUNET_MESSENGER_SrvTunnel *tunnel)
static enum GNUNET_GenericReturnValue join_room_locally(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle)
enum GNUNET_GenericReturnValue enter_srv_room_at(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle, const struct GNUNET_PeerIdentity *door)
Connects a tunnel to a hosting peer of a room through a so called door which is represented by a peer...
struct GNUNET_MESSENGER_PeerStore * get_srv_room_peer_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used peer store of a given room.
static enum GNUNET_GenericReturnValue iterate_cancel_signature(void *cls, const struct GNUNET_HashCode *key, void *value)
static void idle_request_room_messages(void *cls)
static void callback_srv_room_sign_result(void *cls, const struct GNUNET_PeerIdentity *identity, const struct GNUNET_CRYPTO_EddsaSignature *peer_signature)
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...
enum GNUNET_GenericReturnValue delete_srv_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvMemberSession *session, const struct GNUNET_HashCode *hash, const struct GNUNET_TIME_Relative delay)
Deletes a message from the room with a given hash in a specific delay if the provided member by its s...
void remove_srv_room(struct GNUNET_MESSENGER_SrvRoom *room)
Removes the configuration for a given room of a service.
enum GNUNET_GenericReturnValue open_srv_room(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle)
Tries to open a room for a given handle.
void destroy_srv_room(struct GNUNET_MESSENGER_SrvRoom *room, enum GNUNET_GenericReturnValue deletion)
Destroys a room and frees its memory fully.
void cleanup_srv_room_discourse_messages(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_ShortHashCode *discourse)
Cleanup discourse messages outside of current subscriptions from a specific discourse of all the memb...
void send_srv_room_envelope(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *envelope, const struct GNUNET_HashCode *hash)
Sends an envelope from a message with a given hash excluding a specific tunnel inside of a room.
uint32_t get_srv_room_connection_flags(const struct GNUNET_MESSENGER_SrvRoom *room)
Returns connection flags about connection information of a given room and the service managing it.
static void remove_room_member_session(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvMemberSession *session)
enum GNUNET_GenericReturnValue merge_srv_room_last_messages(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_SrvHandle *handle)
Reduces all current forks inside of the message history of a room to one remaining last message by me...
enum GNUNET_GenericReturnValue request_srv_room_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_SrvMemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls)
Requests a message from a room identified by a given hash.
static void handle_room_messages(struct GNUNET_MESSENGER_SrvRoom *room)
void callback_room_handle_message(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
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.
void solve_srv_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, const struct GNUNET_ShortHashCode *member_id, struct GNUNET_TIME_Absolute timestamp)
Checks for potential collisions with member ids and solves them changing active handles ids if they u...
struct GNUNET_MESSENGER_OperationStore * get_srv_room_operation_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used operation store of a given room.
static void close_srv_room(struct GNUNET_MESSENGER_SrvRoom *room)
static enum GNUNET_GenericReturnValue iterate_member_for_subscription(void *cls, const struct GNUNET_CRYPTO_BlindablePublicKey *public_key, struct GNUNET_MESSENGER_SrvMemberSession *session)
static enum GNUNET_GenericReturnValue iterate_send_room_envelope(void *cls, const struct GNUNET_PeerIdentity *key, void *value)
static void callback_srv_room_message_signed(void *cls, struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_Message *message, struct GNUNET_MQ_Envelope *envelope, const struct GNUNET_HashCode *hash)
struct GNUNET_CADET_Handle * get_srv_room_cadet(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the CADET handle from a rooms service.
static enum GNUNET_GenericReturnValue request_room_message_step(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_HashCode *hash, const struct GNUNET_MESSENGER_SrvMemberSession *session, GNUNET_MESSENGER_MessageRequestCallback callback, void *cls)
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_MemberStore * get_srv_room_member_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used member store of a given room.
void load_srv_room(struct GNUNET_MESSENGER_SrvRoom *room)
Loads the local configuration for a given room of a service which contains the last messages hash and...
#define GNUNET_MESSENGER_MERGE_DELAY
#define GNUNET_MESSENGER_IDLE_DELAY
void() GNUNET_MESSENGER_MessageRequestCallback(void *cls, struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Method called whenever a message is found during a request in a room.
void(* GNUNET_MESSENGER_SignedCallback)(void *cls, struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_Message *message, struct GNUNET_MQ_Envelope *envelope, const struct GNUNET_HashCode *hash)
enum GNUNET_GenericReturnValue get_service_peer_identity(struct GNUNET_MESSENGER_Service *service, struct GNUNET_PeerIdentity *peer)
Tries to write the peer identity of the peer running a service on to the peer parameter.
void handle_service_message(struct GNUNET_MESSENGER_Service *service, 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)
Sends a received or sent message with a given hash to each handle of a service which is currently mem...
void forward_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Forwards a given message with a known hash through a tunnel.
void send_tunnel_envelope(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env, const struct GNUNET_HashCode *hash)
Sends an envelope containing a message with a given hash through a tunnel.
enum GNUNET_GenericReturnValue is_tunnel_connected(const struct GNUNET_MESSENGER_SrvTunnel *tunnel)
Returns the status of a currently bound channel of a tunnel.
void bind_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel)
Binds a CADET channel to a tunnel and replaces its channel the tunnel is currently bound to if necess...
uint32_t get_tunnel_messenger_version(const struct GNUNET_MESSENGER_SrvTunnel *tunnel)
Returns the current messenger version the peer connected via a given tunnel has reported to be using ...
void callback_tunnel_disconnect(void *cls, const struct GNUNET_CADET_Channel *channel)
Callback for a CADET channel disconnecting to manage this event as a proper tunnel provided as its cl...
struct GNUNET_MESSENGER_SrvTunnel * create_tunnel(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerIdentity *door)
Creates and allocates a tunnel of a room to a specific peer identity (called door).
void disconnect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel)
Disconnects and unbinds a channel from a tunnel.
enum GNUNET_GenericReturnValue connect_tunnel(struct GNUNET_MESSENGER_SrvTunnel *tunnel)
Tries to connect a tunnel by creating a new CADET channel and binding it.
enum GNUNET_GenericReturnValue send_tunnel_message(struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message)
Sends a message by packing it automatically into an envelope and passing it through the tunnel.
static struct GNUNET_VPN_Handle * handle
Handle to vpn service.
Definition gnunet-vpn.c:35
commonly used definitions; globals in this file are exempt from the rule that the module name ("commo...
void GNUNET_PILS_cancel(struct GNUNET_PILS_Operation *op)
Cancel request.
Definition pils_api.c:623
struct GNUNET_CADET_Port * GNUNET_CADET_open_port(struct GNUNET_CADET_Handle *h, const struct GNUNET_HashCode *port, GNUNET_CADET_ConnectEventHandler connects, void *connects_cls, GNUNET_CADET_WindowSizeEventHandler window_changes, GNUNET_CADET_DisconnectEventHandler disconnects, const struct GNUNET_MQ_MessageHandler *handlers)
Open a port to receive incoming MQ-based channels.
Definition cadet_api.c:966
void GNUNET_CADET_close_port(struct GNUNET_CADET_Port *p)
Close a port opened with GNUNET_CADET_open_port.
Definition cadet_api.c:804
enum GNUNET_GenericReturnValue GNUNET_DISK_directory_remove(const char *filename)
Remove all files in a directory (rm -rf).
Definition disk.c:1140
enum GNUNET_GenericReturnValue GNUNET_DISK_directory_test(const char *fil, int is_readable)
Test if fil is a directory and listable.
Definition disk.c:466
enum GNUNET_GenericReturnValue GNUNET_DISK_directory_create(const char *dir)
Implementation of "mkdir -p".
Definition disk.c:573
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
#define GNUNET_CONTAINER_DLL_insert_tail(head, tail, element)
Insert an element at the tail of a DLL.
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition crypto_hash.c:40
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).
void * GNUNET_CONTAINER_multipeermap_get(const struct GNUNET_CONTAINER_MultiPeerMap *map, const struct GNUNET_PeerIdentity *key)
Given a key find a value in the map matching the key.
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_multipeermap_destroy(struct GNUNET_CONTAINER_MultiPeerMap *map)
Destroy a hash map.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multihashmap_remove(struct GNUNET_CONTAINER_MultiHashMap *map, const struct GNUNET_HashCode *key, const void *value)
Remove the given key-value pair from the map.
int GNUNET_CONTAINER_multipeermap_iterate(struct GNUNET_CONTAINER_MultiPeerMap *map, GNUNET_CONTAINER_PeerMapIterator it, void *it_cls)
Iterate over all entries in the map.
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.
struct GNUNET_CONTAINER_MultiPeerMap * GNUNET_CONTAINER_multipeermap_create(unsigned int len, int do_not_copy_keys)
Create a multi peer map (hash map for public keys of peers).
unsigned int GNUNET_CONTAINER_multipeermap_size(const struct GNUNET_CONTAINER_MultiPeerMap *map)
Get the number of key-value pairs in the map.
int GNUNET_CONTAINER_multipeermap_put(struct GNUNET_CONTAINER_MultiPeerMap *map, const struct GNUNET_PeerIdentity *key, void *value, enum GNUNET_CONTAINER_MultiHashMapOption opt)
Store a key-value pair in the map.
enum GNUNET_GenericReturnValue GNUNET_CONTAINER_multipeermap_remove(struct GNUNET_CONTAINER_MultiPeerMap *map, const struct GNUNET_PeerIdentity *key, const void *value)
Remove the given key-value pair from the map.
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_FAST
, ' bother checking if a value already exists (faster than GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE...
@ GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE
Allow multiple values with the same key.
#define GNUNET_is_zero(a)
Check that memory in a is all zeros.
#define GNUNET_log(kind,...)
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
#define GNUNET_UNUSED
gcc-ism to document unused arguments
#define GNUNET_memcpy(dst, src, n)
Call memcpy() but check for n being 0 first.
GNUNET_GenericReturnValue
Named constants for return values.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
@ GNUNET_PUBLIC_KEY_TYPE_EDDSA
EDDSA identity.
@ GNUNET_SCHEDULER_PRIORITY_IDLE
Run when otherwise idle.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
const char * GNUNET_i2s(const struct GNUNET_PeerIdentity *pid)
Convert a peer identity to a string (for printing debug messages).
#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_WARNING
@ 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.
const char * GNUNET_MESSENGER_name_of_kind(enum GNUNET_MESSENGER_MessageKind kind)
Get the name of a message kind.
#define GNUNET_MESSENGER_VERSION
Version number of GNUnet Messenger API.
@ GNUNET_MESSENGER_KIND_INFO
The info kind.
@ GNUNET_MESSENGER_KIND_MISS
The miss kind.
@ GNUNET_MESSENGER_KIND_REQUEST
The request kind.
@ GNUNET_MESSENGER_KIND_LEAVE
The leave kind.
@ GNUNET_MESSENGER_KIND_PEER
The peer kind.
@ GNUNET_MESSENGER_KIND_KEY
The key kind.
@ GNUNET_MESSENGER_KIND_JOIN
The join kind.
@ GNUNET_MESSENGER_KIND_SUBSCRIBTION
The subscription kind.
@ GNUNET_MESSENGER_KIND_DELETION
The deletion kind.
@ GNUNET_MESSENGER_KIND_CONNECTION
The connection kind.
@ GNUNET_MESSENGER_KIND_MERGE
The merge kind.
@ GNUNET_MESSENGER_KIND_ID
The id kind.
@ GNUNET_MESSENGER_FLAG_CONNECTION_AUTO
The auto flag.
@ GNUNET_MESSENGER_FLAG_CONNECTION_NONE
The none flag.
struct GNUNET_MQ_Envelope * GNUNET_MQ_env_copy(struct GNUNET_MQ_Envelope *env)
Function to copy an envelope.
Definition mq.c:373
#define GNUNET_MQ_handler_end()
End-marker for the handlers array.
#define GNUNET_MQ_hd_var_size(name, code, str, ctx)
const struct GNUNET_MessageHeader * GNUNET_MQ_env_get_msg(const struct GNUNET_MQ_Envelope *env)
Obtain message contained in envelope.
Definition mq.c:896
void GNUNET_PEER_resolve(GNUNET_PEER_Id id, struct GNUNET_PeerIdentity *pid)
Convert an interned PID to a normal peer identity.
Definition peer.c:220
#define GNUNET_MESSAGE_TYPE_CADET_CLI
Traffic (net-cat style) used by the Command Line Interface.
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition scheduler.c:986
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed_with_priority(struct GNUNET_TIME_Relative delay, enum GNUNET_SCHEDULER_Priority priority, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition scheduler.c:1213
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_with_priority(enum GNUNET_SCHEDULER_Priority prio, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified priority.
Definition scheduler.c:1237
struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_zero_(void)
Return relative time of 0ms.
Definition time.c:133
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get_zero_(void)
Return absolute time of 0ms.
Definition time.c:142
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get_forever_(void)
Return "forever".
Definition time.c:205
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_get(void)
Get the current time.
Definition time.c:111
struct GNUNET_TIME_Relative GNUNET_TIME_relative_get_forever_(void)
Return "forever".
Definition time.c:196
#define GNUNET_TIME_absolute_cmp(t1, op, t2)
Compare two absolute times.
struct GNUNET_TIME_Relative GNUNET_TIME_absolute_get_difference(struct GNUNET_TIME_Absolute start, struct GNUNET_TIME_Absolute end)
Compute the time difference between the given start and end times.
Definition time.c:423
struct GNUNET_TIME_AbsoluteNBO GNUNET_TIME_absolute_hton(struct GNUNET_TIME_Absolute a)
Convert absolute time to network byte order.
Definition time.c:636
static void handle_member_id(void *cls, const struct GNUNET_MESSENGER_MemberMessage *msg)
void load_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path)
Loads the list of tunnels peer identities from a file under a given path.
void init_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels)
Initializes list of tunnels peer identities as empty list.
void save_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const char *path)
Saves the list of tunnels peer identities to a file under a given path.
enum GNUNET_GenericReturnValue verify_list_tunnels_flag_token(const struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, enum GNUNET_MESSENGER_ConnectionFlags flag)
Verifies that a specific tunnel selected by its peer identity in a list of tunnels is the first in or...
struct GNUNET_MESSENGER_ListTunnel * find_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, size_t *index)
Searches linearly through the list of tunnels peer identities for matching a specific peer identity a...
void clear_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels)
Clears the list of tunnels peer identities.
struct GNUNET_MESSENGER_ListTunnel * remove_from_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, struct GNUNET_MESSENGER_ListTunnel *element)
Removes a specific element from the list of tunnels peer identities and returns the next element in t...
void encode_message_signature(const struct GNUNET_MESSENGER_Message *message, uint16_t length, char *buffer)
Encodes the signature of a given message into a buffer of a maximum length in bytes.
struct GNUNET_MQ_Envelope * pack_message(struct GNUNET_MESSENGER_Message *message, struct GNUNET_HashCode *hash, enum GNUNET_MESSENGER_PackMode mode)
Encodes the message to pack it into a newly allocated envelope if mode is equal to GNUNET_MESSENGER_P...
struct GNUNET_PILS_Operation * sign_message_by_peer(struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash, struct GNUNET_PILS_Handle *pils, const GNUNET_PILS_SignResultCallback sign_cb, void *cls)
Signs the hash of a message with the peer identity of a given pils service going into a callback with...
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...
enum GNUNET_GenericReturnValue is_epoch_message(const struct GNUNET_MESSENGER_Message *message)
Returns whether a certain kind of message from storage contains some specific details that might be r...
void destroy_message(struct GNUNET_MESSENGER_Message *message)
Destroys a message and frees its memory fully.
@ GNUNET_MESSENGER_PACK_MODE_ENVELOPE
enum GNUNET_GenericReturnValue generate_free_member_id(struct GNUNET_ShortHashCode *id, const struct GNUNET_CONTAINER_MultiShortmap *members)
Tries to generate an unused member id and store it into the id parameter.
void convert_messenger_key_to_port(const union GNUNET_MESSENGER_RoomKey *key, struct GNUNET_HashCode *port)
Converts a Messenger service key of a room to the specific port which gets used for the CADET channel...
void convert_peer_identity_to_id(const struct GNUNET_PeerIdentity *identity, struct GNUNET_ShortHashCode *id)
Converts a peers identity to a short hash code which can be used as id to refer to a peer via sender ...
void delayed_disconnect_channel(struct GNUNET_CADET_Channel *channel)
Starts an urgent task to close a CADET channel asynchronously.
#define DIR_SEPARATOR
Definition platform.h:166
Opaque handle to a channel.
Definition cadet.h:116
Opaque handle to the service.
Definition cadet_api.c:39
struct GNUNET_CRYPTO_EddsaSignature eddsa_signature
AN EdDSA signature.
An identity key as per LSD0001.
an ECC signature using EdDSA.
A 512-bit hashcode.
struct GNUNET_MESSENGER_SrvTunnel * exclude
struct GNUNET_MESSENGER_ListHandle * next
struct GNUNET_MESSENGER_SrvHandle * handle
struct GNUNET_MESSENGER_ListHandle * head
struct GNUNET_MESSENGER_ListMessage * head
struct GNUNET_MESSENGER_ListMessage * tail
struct GNUNET_MESSENGER_ListTunnel * next
struct GNUNET_MESSENGER_ListTunnel * head
struct GNUNET_CONTAINER_MultiShortmap * members
struct GNUNET_MESSENGER_SrvMemberSessionCompletion * tail
const struct GNUNET_MESSENGER_Message * message
struct GNUNET_MESSENGER_SrvMemberSessionCompletion * head
struct GNUNET_CONTAINER_MultiHashMap * sessions
struct GNUNET_MESSENGER_MessageMerge merge
struct GNUNET_HashCode previous
The hash of the previous message from the senders perspective.
struct GNUNET_CRYPTO_BlindableKeySignature signature
The signature of the senders private key.
enum GNUNET_MESSENGER_MessageKind kind
The kind of the message.
struct GNUNET_TIME_AbsoluteNBO timestamp
The timestamp of the message.
struct GNUNET_ShortHashCode sender_id
The senders id inside of the room the message was sent in.
struct GNUNET_HashCode previous
The hash of a second previous message.
struct GNUNET_HashCode epochs[2]
The previous epochs the message was sent from.
struct GNUNET_MESSENGER_MessageHeader header
Header.
struct GNUNET_MESSENGER_MessageBody body
Body.
struct GNUNET_MESSENGER_SrvMemberSession * member
enum GNUNET_GenericReturnValue auto_routing
struct GNUNET_MESSENGER_ListHandles handles
struct GNUNET_MESSENGER_SrvMemberSessionCompletion * prev
struct GNUNET_MESSENGER_SrvMemberSessionCompletion * next
struct GNUNET_MESSENGER_SrvMemberSession * session
struct GNUNET_CRYPTO_BlindablePublicKey public_key
struct GNUNET_MESSENGER_SrvRoom * room
struct GNUNET_MESSENGER_Message * message
struct GNUNET_MESSENGER_PeerStore peer_store
struct GNUNET_CONTAINER_MultiPeerMap * tunnels
struct GNUNET_MESSENGER_MemberStore member_store
struct GNUNET_MESSENGER_Service * service
struct GNUNET_MESSENGER_SrvHandle * sync
struct GNUNET_MESSENGER_ListTunnels basement
struct GNUNET_SCHEDULER_Task * idle
struct GNUNET_MESSENGER_MessageStore message_store
struct GNUNET_MESSENGER_MessageState state
struct GNUNET_MESSENGER_ListMessages handling
struct GNUNET_MESSENGER_OperationStore operation_store
struct GNUNET_MESSENGER_SrvHandle * host
struct GNUNET_CONTAINER_MultiHashMap * signatures
struct GNUNET_CADET_Channel * channel
struct GNUNET_MESSENGER_SrvRoom * room
Message handler for a specific message type.
Header for all communications.
The identity of the host (wraps the signing key of the peer).
A 256-bit hashcode.
Time for absolute times used by GNUnet, in microseconds.
Time for relative time used by GNUnet, in microseconds.
A room key unifies a room key code and its 512bit hash representation.