GNUnet 0.28.0-dev.3-20-gf1136b0b8
 
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 GNUNET_free (signature);
610 return;
611 }
612
614 "Signature operation could not be removed: %s\n",
615 GNUNET_h2s (&(signature->hash)));
616
617 signature->message = NULL;
618 signature->envelope = NULL;
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
714 &(signature->hash)))
715 {
717 "Signature operation already queued: %s\n",
718 GNUNET_h2s (&(signature->hash)));
719
720 destroy_message (signature->message);
721 GNUNET_free (signature->envelope);
722 GNUNET_free (signature);
723 return GNUNET_SYSERR;
724 }
725
726 signature->callback = callback;
727 signature->closure = closure;
728
729 signature->operation = sign_message_by_peer (signature->message,
730 &(signature->hash),
731 room->service->pils,
733 signature);
734
735 if (! signature->operation)
736 {
738 "Signing message by peer identity (%s) failed: %s\n",
740 GNUNET_h2s (&(signature->hash)));
741
742 destroy_message (signature->message);
743 GNUNET_free (signature->envelope);
744 GNUNET_free (signature);
745 return GNUNET_SYSERR;
746 }
747
749 &(signature->hash),
750 signature,
752 {
754 "Signature operation could not be stored: %s\n",
755 GNUNET_h2s (&(signature->hash)));
756
757 iterate_cancel_signature (NULL, &(signature->hash),
758 signature);
759 return GNUNET_SYSERR;
760 }
761
762 return GNUNET_YES;
763}
764
765
768 struct GNUNET_MESSENGER_Message *message,
769 const struct GNUNET_HashCode *hash);
770
771void
773 const struct GNUNET_MESSENGER_Message *message,
774 const struct GNUNET_HashCode *hash);
775
776static void
778 struct GNUNET_MESSENGER_SrvRoom *room,
779 struct GNUNET_MESSENGER_Message *message,
780 struct GNUNET_MQ_Envelope *envelope,
781 const struct GNUNET_HashCode *hash)
782{
784 enum GNUNET_GenericReturnValue new_message;
785
786 GNUNET_assert ((cls) && (room) && (message) && (envelope) && (hash));
787
788 handle = cls;
789
790 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending room message: %s\n",
791 GNUNET_h2s (hash));
792
793 send_srv_room_envelope (room, NULL, envelope, hash);
794 new_message = update_room_message (room, message, hash);
795
796 if (GNUNET_YES != new_message)
797 {
799 "Sending duplicate message failed: %s\n",
800 GNUNET_h2s (hash));
801 return;
802 }
803
804 switch (message->header.kind)
805 {
807 send_message_join (room, handle, message, hash);
808 break;
810 send_message_key (room, handle, message, hash);
811 break;
813 send_message_peer (room, handle, message, hash);
814 break;
816 send_message_id (room, handle, message, hash);
817 break;
819 send_message_request (room, handle, message, hash);
820 break;
821 default:
822 break;
823 }
824
825 callback_room_handle_message (room, message, hash);
826
827 if ((GNUNET_MESSENGER_KIND_MERGE == message->header.kind) &&
828 (room->sync == handle) &&
830 room->key))))
832}
833
834
838 struct GNUNET_MESSENGER_Message *message)
839{
840 GNUNET_assert ((room) && (handle));
841
842 if (! message)
843 return GNUNET_NO;
844
846 "Sending message from handle in room: %s (%s)\n",
847 GNUNET_h2s (&(room->key)),
849
850 return sign_srv_room_message (room, message,
852 handle);
853}
854
855
865
869 void *value)
870{
871 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
872 struct GNUNET_MESSENGER_ClosureSendRoom *closure;
873 struct GNUNET_MQ_Envelope *envelope;
874
875 GNUNET_assert ((cls) && (value));
876
877 closure = cls;
878 tunnel = value;
879
880 GNUNET_assert ((closure->envelope) && (closure->hash));
881
882 if ((! is_tunnel_connected (tunnel)) ||
884 return GNUNET_YES;
885
886 if (tunnel == closure->exclude)
887 return GNUNET_YES;
888
889 envelope = GNUNET_MQ_env_copy (closure->envelope);
890
891 if (envelope)
892 send_tunnel_envelope (tunnel, envelope, closure->hash);
893
894 return GNUNET_YES;
895}
896
897
898void
900 struct GNUNET_MESSENGER_SrvTunnel *tunnel,
901 struct GNUNET_MQ_Envelope *envelope,
902 const struct GNUNET_HashCode *hash)
903{
905
906 GNUNET_assert ((room) && (envelope));
907
908 closure.exclude = tunnel;
909 closure.envelope = envelope;
910 closure.hash = hash;
911
914 &closure);
915
917}
918
919
920void
922 struct GNUNET_MESSENGER_SrvTunnel *tunnel)
923{
924 struct GNUNET_MESSENGER_MessageStore *message_store;
925 const struct GNUNET_MESSENGER_Message *message;
926
927 if (! room->peer_message)
928 return;
929
930 message_store = get_srv_room_message_store (room);
931 message = get_store_message (message_store, room->peer_message);
932
933 if (! message)
934 {
936 room->peer_message = NULL;
937 return;
938 }
939
940 if (tunnel)
941 forward_tunnel_message (tunnel, message, room->peer_message);
942}
943
944
948{
949 const struct GNUNET_HashCode *hash;
950 struct GNUNET_MESSENGER_Message *message;
951
952 GNUNET_assert (room);
953
954 if (! handle)
955 return GNUNET_SYSERR;
956
958 "Merging messages by handle in room: %s\n",
959 GNUNET_h2s (&(room->key)));
960
961 hash = get_message_state_merge_hash (&(room->state));
962
963 if ((! hash) || (GNUNET_is_zero (hash)))
964 return GNUNET_NO;
965
966 message = create_message_merge (hash);
967
968 if (! message)
969 {
971 "Merging messages failed: %s\n",
972 GNUNET_h2s (&(room->key)));
973 return GNUNET_SYSERR;
974 }
975
976 return send_srv_room_message (room, handle, message);
977}
978
979
982 struct GNUNET_MESSENGER_SrvMemberSession *session,
983 const struct GNUNET_HashCode *hash,
984 const struct GNUNET_TIME_Relative delay)
985{
986 const struct GNUNET_MESSENGER_Message *message;
987 struct GNUNET_TIME_Relative forever;
988
989 GNUNET_assert ((room) && (session) && (hash));
990
992
993 if (0 == GNUNET_memcmp (&forever, &delay))
994 {
996 "Deletion is delayed forever: operation is impossible!\n");
997 return GNUNET_SYSERR;
998 }
999
1000 {
1001 struct GNUNET_MESSENGER_MessageStore *message_store;
1002
1003 message_store = get_srv_room_message_store (room);
1004 message = get_store_message (message_store, hash);
1005 }
1006
1007 if (! message)
1008 return GNUNET_YES;
1009
1010 if (GNUNET_YES != check_member_session_history (session, hash, GNUNET_YES))
1011 {
1013 "Unpermitted request for deletion by member (%s) of message (%s)!\n",
1015 hash));
1016
1017 return GNUNET_NO;
1018 }
1019
1020 {
1021 struct GNUNET_MESSENGER_OperationStore *operation_store;
1022
1023 operation_store = get_srv_room_operation_store (room);
1024
1025 if (GNUNET_OK != use_store_operation (operation_store, hash,
1027 {
1029 "Deletion has failed: operation denied!\n");
1030 return GNUNET_SYSERR;
1031 }
1032 }
1033
1034 return GNUNET_YES;
1035}
1036
1037
1038struct GNUNET_CADET_Handle*
1040{
1041 GNUNET_assert (room);
1042
1043 return room->service->cadet;
1044}
1045
1046
1047const struct GNUNET_HashCode*
1049{
1050 GNUNET_assert (room);
1051
1052 return &(room->key);
1053}
1054
1055
1056const struct GNUNET_MESSENGER_SrvTunnel*
1058 const struct GNUNET_PeerIdentity *peer)
1059{
1060 GNUNET_assert ((room) && (peer));
1061
1063}
1064
1065
1066static enum GNUNET_GenericReturnValue
1068 const struct GNUNET_HashCode *hash,
1070 session,
1072 void *cls)
1073{
1074 struct GNUNET_MESSENGER_MessageStore *message_store;
1075 const struct GNUNET_MESSENGER_MessageLink *link;
1076 const struct GNUNET_MESSENGER_Message *message;
1077
1078 GNUNET_assert ((room) && (hash) && (session));
1079
1080 message_store = get_srv_room_message_store (room);
1081 link = get_store_message_link (message_store, hash, GNUNET_YES);
1082
1083 if (! link)
1084 goto forward;
1085
1087 "Requesting link of message with hash: %s\n",
1088 GNUNET_h2s (hash));
1089
1090 {
1092 result = request_room_message_step (room, &(link->first), session,
1093 callback, cls);
1094
1095 if ((GNUNET_YES == link->multiple) &&
1096 (GNUNET_YES == request_room_message_step (room, &(link->second),
1097 session, callback, cls)))
1098 return GNUNET_YES;
1099 else
1100 return result;
1101 }
1102
1103forward:
1104 message = get_store_message (message_store, hash);
1105
1106 if (! message)
1107 {
1109 "Requested message is missing in local storage: %s\n",
1110 GNUNET_h2s (hash));
1111 return GNUNET_NO;
1112 }
1113
1114 if (GNUNET_YES == is_epoch_message (message))
1115 goto skip_member_session;
1116
1117 if (GNUNET_YES != check_member_session_history (session, hash, GNUNET_NO))
1118 {
1120 "Unpermitted request for access by member (%s) of message (%s)!\n",
1122 GNUNET_h2s (hash));
1123 return GNUNET_YES;
1124 }
1125
1126skip_member_session:
1127 if (callback)
1128 callback (cls, room, message, hash);
1129
1130 return GNUNET_YES;
1131}
1132
1133
1136 const struct GNUNET_HashCode *hash,
1138 session,
1140 void *cls)
1141{
1143
1144 GNUNET_assert ((room) && (hash));
1145
1146 result = request_room_message_step (room, hash, session, callback, cls);
1147
1148 if ((GNUNET_NO == result) && (callback))
1149 callback (cls, room, NULL, hash);
1150
1151 return result;
1152}
1153
1154
1155static void
1157{
1158 struct GNUNET_MESSENGER_SrvRoom *room;
1159 struct GNUNET_MESSENGER_OperationStore *operation_store;
1160 const struct GNUNET_HashCode *hash;
1161
1162 GNUNET_assert (cls);
1163
1164 room = cls;
1165 room->idle = NULL;
1166
1167 operation_store = get_srv_room_operation_store (room);
1168 hash = get_message_state_merge_hash (&(room->state));
1169
1170 if ((hash) && (! GNUNET_is_zero (hash)) &&
1172 hash)))
1174 operation_store,
1175 hash,
1178
1183 cls);
1184}
1185
1186
1187void
1189 const struct
1191 const struct GNUNET_ShortHashCode *member_id,
1193{
1194 struct GNUNET_MESSENGER_MemberStore *member_store;
1195 struct GNUNET_MESSENGER_Member *member;
1196 struct GNUNET_MESSENGER_ListHandles *handles;
1197 struct GNUNET_MESSENGER_ListHandle *element;
1198
1199 GNUNET_assert ((room) && (public_key) && (member_id));
1200
1201 member_store = get_srv_room_member_store (room);
1202 member = get_store_member (member_store, member_id);
1203
1204 if ((! member) || (1 >= GNUNET_CONTAINER_multihashmap_size (
1205 member->sessions)))
1206 return;
1207
1208 handles = &(room->service->handles);
1209
1210 for (element = handles->head; element; element = element->next)
1211 {
1214 struct GNUNET_MESSENGER_SrvMemberSession *session;
1215
1217 get_srv_room_key (room));
1218
1219 if ((! handle_member_id) ||
1220 (0 != GNUNET_memcmp (member_id, handle_member_id)))
1221 continue;
1222
1223 pubkey = get_srv_handle_key (element->handle);
1224
1225 if (0 == GNUNET_memcmp (public_key, pubkey))
1226 continue;
1227
1228 session = get_member_session (member, pubkey);
1229
1230 if (! session)
1231 continue;
1232
1233 {
1235 start = get_member_session_start (session);
1236
1237 if (GNUNET_TIME_relative_get_zero_ ().rel_value_us !=
1239 continue;
1240 }
1241
1242 {
1243 struct GNUNET_ShortHashCode random_id;
1244 generate_free_member_id (&random_id, member_store->members);
1245
1247 element->handle,
1248 room,
1249 &random_id,
1250 GNUNET_NO);
1251 }
1252 }
1253}
1254
1255
1256void
1258{
1259 struct GNUNET_MESSENGER_ListTunnel *element;
1260 struct GNUNET_PeerIdentity peer;
1261 size_t count;
1262 size_t src;
1263 size_t dst;
1264
1265 GNUNET_assert (room);
1266
1267 if (GNUNET_OK != get_service_peer_identity (room->service, &peer))
1268 return;
1269
1270 count = count_of_tunnels (&(room->basement));
1271
1272 if (! find_list_tunnels (&(room->basement), &peer, &src))
1273 return;
1274
1275 if ((count > room->service->min_routers) &&
1276 (GNUNET_NO == is_srv_handle_routing (room->host, &(room->key))) &&
1278 &peer,
1280 {
1281 close_srv_room (room);
1282 return;
1283 }
1284
1285 element = room->basement.head;
1286 dst = 0;
1287
1288 while (element)
1289 {
1290 struct GNUNET_MESSENGER_SrvTunnel *tunnel;
1291
1292 GNUNET_PEER_resolve (element->peer, &peer);
1293
1295
1296 if (! tunnel)
1297 {
1298 element = remove_from_list_tunnels (&(room->basement), element);
1299 continue;
1300 }
1301
1302 if (GNUNET_YES == required_connection_between (count, src, dst))
1303 {
1304 if (GNUNET_SYSERR == connect_tunnel (tunnel))
1305 {
1306 element = remove_from_list_tunnels (&(room->basement), element);
1307 continue;
1308 }
1309 }
1310 else
1311 disconnect_tunnel (tunnel);
1312
1313 element = element->next;
1314 dst++;
1315 }
1316}
1317
1318
1319uint32_t
1326
1327
1328uint32_t
1330{
1331 uint32_t flags;
1332
1334
1336
1339
1340 return flags;
1341}
1342
1343
1344static void
1346{
1347 struct GNUNET_MESSENGER_MessageStore *message_store;
1348 struct GNUNET_MESSENGER_MemberStore *member_store;
1349 struct GNUNET_MESSENGER_PeerStore *peer_store;
1350 const struct GNUNET_HashCode *key;
1351
1352 message_store = get_srv_room_message_store (room);
1353 member_store = get_srv_room_member_store (room);
1354 peer_store = get_srv_room_peer_store (room);
1355
1356 key = get_srv_room_key (room);
1357
1359 "Handling room messages: %s\n", GNUNET_h2s (key));
1360
1361 while (room->handling.head)
1362 {
1363 struct GNUNET_MESSENGER_ListMessage *element;
1364 struct GNUNET_MESSENGER_SenderSession session;
1365 const struct GNUNET_MESSENGER_Message *message;
1366 const struct GNUNET_HashCode *epoch;
1367
1368 element = room->handling.head;
1369 message = get_store_message (
1370 message_store, &(element->hash));
1371
1372 if (! message)
1373 goto finish_handling;
1374
1375 if (GNUNET_YES == is_peer_message (message))
1376 {
1377 session.peer = get_store_peer_of (peer_store, message, &(element->hash));
1378
1379 if (! session.peer)
1380 goto finish_handling;
1381 }
1382 else
1383 {
1384 struct GNUNET_MESSENGER_Member *member;
1385
1386 member = get_store_member_of (member_store, message);
1387
1388 if (! member)
1389 goto finish_handling;
1390
1391 session.member = get_member_session_of (member, message,
1392 &(element->hash));
1393
1394 if (! session.member)
1395 goto finish_handling;
1396 }
1397
1398 epoch = get_store_message_epoch (message_store, &(element->hash));
1399
1400 handle_service_message (room->service, room, &session, message,
1401 &(element->hash), epoch, GNUNET_YES);
1402
1403finish_handling:
1405 element);
1406 GNUNET_free (element);
1407 }
1408}
1409
1410
1413 struct GNUNET_MESSENGER_Message *message,
1414 const struct GNUNET_HashCode *hash)
1415{
1416 struct GNUNET_MESSENGER_OperationStore *operation_store;
1417 struct GNUNET_MESSENGER_MessageStore *message_store;
1418 enum GNUNET_GenericReturnValue requested;
1419
1420 GNUNET_assert ((room) && (message) && (hash));
1421
1422 operation_store = get_srv_room_operation_store (room);
1423
1424 if (! operation_store)
1425 {
1426 destroy_message (message);
1427
1428 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Operation store invalid!\n");
1429 return GNUNET_NO;
1430 }
1431
1432 requested = (GNUNET_MESSENGER_OP_REQUEST ==
1433 get_store_operation_type (operation_store, hash)?
1435
1436 if (GNUNET_YES == requested)
1437 cancel_store_operation (operation_store, hash);
1438
1439 message_store = get_srv_room_message_store (room);
1440
1441 if (! message_store)
1442 {
1443 destroy_message (message);
1444
1445 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message store invalid!\n");
1446 return GNUNET_NO;
1447 }
1448
1449 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Handle a message in room (%s).\n",
1450 GNUNET_h2s (get_srv_room_key (room)));
1451
1452 if (GNUNET_YES == contains_store_message (message_store, hash))
1453 {
1454 destroy_message (message);
1455
1456 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Duplicate message got dropped!\n");
1457 return GNUNET_NO;
1458 }
1459
1460 if (GNUNET_OK != put_store_message (message_store, hash, message))
1461 {
1462 destroy_message (message);
1463
1464 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Storing message failed!\n");
1465 return GNUNET_NO;
1466 }
1467
1468 update_message_state (&(room->state), requested, message, hash);
1469
1470 if ((GNUNET_YES == requested) ||
1471 (GNUNET_MESSENGER_KIND_INFO == message->header.kind) ||
1473 return GNUNET_YES;
1474
1475 if ((GNUNET_MESSENGER_KIND_MERGE == message->header.kind) &&
1477 &(message->body.
1478 merge.previous))
1479 ))
1480 cancel_store_operation (operation_store, &(message->body.merge.previous));
1481
1483 &(message->header.
1484 previous)))
1485 cancel_store_operation (operation_store, &(message->header.previous));
1486
1487 return GNUNET_YES;
1488}
1489
1490
1496
1497static enum GNUNET_GenericReturnValue
1500 public_key,
1502 session)
1503{
1505 struct GNUNET_MESSENGER_Member *member;
1506 struct GNUNET_MESSENGER_Subscription *subscription;
1507
1508 GNUNET_assert ((cls) && (session));
1509
1510 it = cls;
1511 member = session->member;
1512
1513 subscription = get_member_subscription (member, it->discourse);
1514 if (! subscription)
1515 return GNUNET_YES;
1516
1517 if (GNUNET_TIME_absolute_cmp (subscription->start, <, it->start))
1518 it->start = subscription->start;
1519
1520 return GNUNET_YES;
1521}
1522
1523
1524void
1526 const struct GNUNET_ShortHashCode *
1527 discourse)
1528{
1530 struct GNUNET_MESSENGER_MemberStore *member_store;
1531 struct GNUNET_MESSENGER_MessageStore *message_store;
1532
1533 GNUNET_assert ((room) && (discourse));
1534
1535 it.discourse = discourse;
1537
1538 member_store = get_srv_room_member_store (room);
1539
1541
1542 message_store = get_srv_room_message_store (room);
1543
1545 discourse,
1546 it.start);
1547}
1548
1549
1557
1566
1567static enum GNUNET_GenericReturnValue
1569 const struct
1572 session)
1573{
1574 struct GNUNET_MESSENGER_MemberUpdate *update;
1575
1576 GNUNET_assert ((cls) && (session));
1577
1578 if (GNUNET_YES == is_member_session_completed (session))
1579 return GNUNET_YES;
1580
1581 update = cls;
1582
1583 update_member_session_history (session, update->message, update->hash);
1584
1585 if (GNUNET_YES == is_member_session_completed (session))
1586 {
1588
1590
1591 if (! element)
1592 {
1594 "Adding member session completion to queue failed!\n");
1595 return GNUNET_YES;
1596 }
1597
1599 "Add member session completion to queue!\n");
1600
1601 element->session = session;
1602
1603 GNUNET_CONTAINER_DLL_insert_tail (update->head, update->tail, element);
1604 }
1605
1606 return GNUNET_YES;
1607}
1608
1609
1610static void
1613
1614void
1616 const struct GNUNET_MESSENGER_Message *message,
1617 const struct GNUNET_HashCode *hash)
1618{
1619 struct GNUNET_MESSENGER_PeerStore *peer_store;
1620 struct GNUNET_MESSENGER_MemberStore *member_store;
1621 struct GNUNET_MESSENGER_SenderSession session;
1622 enum GNUNET_GenericReturnValue start_handle;
1623
1624 GNUNET_assert ((room) && (message) && (hash));
1625
1626 peer_store = get_srv_room_peer_store (room);
1627 member_store = get_srv_room_member_store (room);
1628
1629 if (GNUNET_YES == is_peer_message (message))
1630 {
1631 session.peer = get_store_peer_of (peer_store, message, hash);
1632
1633 if (! session.peer)
1634 {
1636 "Message handling dropped: Peer is missing!\n");
1637 return;
1638 }
1639 }
1640 else
1641 {
1642 struct GNUNET_MESSENGER_Member *member;
1643 member = get_store_member_of (member_store, message);
1644
1645 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Callback for message (%s)\n",
1646 GNUNET_h2s (hash));
1647
1648 if (! member)
1649 {
1651 "Message handling dropped: Member is missing!\n");
1652 return;
1653 }
1654
1655 session.member = get_member_session_of (member, message, hash);
1656
1657 if (! session.member)
1658 {
1660 "Message handling dropped: Session is missing!\n");
1661 return;
1662 }
1663 }
1664
1665 {
1666 struct GNUNET_MESSENGER_MemberUpdate update;
1667 update.message = message;
1668 update.hash = hash;
1669
1670 update.head = NULL;
1671 update.tail = NULL;
1672
1674 member_store,
1676 &update);
1677
1678 while (update.head)
1679 {
1680 struct GNUNET_MESSENGER_SrvMemberSessionCompletion *element = update.head;
1681
1682 remove_room_member_session (room, element->session);
1683
1684 GNUNET_CONTAINER_DLL_remove (update.head, update.tail, element);
1686 "Remove member session completion from queue!\n");
1687
1688 GNUNET_free (element);
1689 }
1690 }
1691
1692 start_handle = room->handling.head ? GNUNET_NO : GNUNET_YES;
1693
1694 add_to_list_messages (&(room->handling), hash);
1695
1696 switch (message->header.kind)
1697 {
1699 handle_message_join (room, &session, message, hash);
1700 break;
1702 handle_message_leave (room, &session, message, hash);
1703 break;
1705 handle_message_key (room, &session, message, hash);
1706 break;
1708 handle_message_peer (room, &session, message, hash);
1709 break;
1711 handle_message_id (room, &session, message, hash);
1712 break;
1714 handle_message_miss (room, &session, message, hash);
1715 break;
1717 handle_message_delete (room, &session, message, hash);
1718 break;
1720 handle_message_connection (room, &session, message, hash);
1721 break;
1723 handle_message_subscribe (room, &session, message, hash);
1724 break;
1725 default:
1726 break;
1727 }
1728
1729 if (GNUNET_YES == start_handle)
1730 handle_room_messages (room);
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, "Load room from directory: %s\n",
1744 room_dir);
1745
1747 {
1748 char *peers_file;
1749 GNUNET_asprintf (&peers_file, "%s%s", room_dir, "peers.list");
1750
1751 load_peer_store (get_srv_room_peer_store (room), peers_file);
1752 GNUNET_free (peers_file);
1753
1758
1759 {
1760 char *basement_file;
1761 GNUNET_asprintf (&basement_file, "%s%s", room_dir, "basement.list");
1762
1763 load_list_tunnels (&(room->basement), basement_file);
1764 GNUNET_free (basement_file);
1765 }
1766
1767 load_message_state (&(room->state), room_dir);
1768 }
1769
1770 GNUNET_free (room_dir);
1771}
1772
1773
1774void
1776{
1777 char *room_dir;
1778
1779 GNUNET_assert (room);
1780
1781 get_room_data_subdir (room, &room_dir);
1782
1783 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Save room to directory: %s\n",
1784 room_dir);
1785
1786 if ((GNUNET_YES == GNUNET_DISK_directory_test (room_dir, GNUNET_NO)) ||
1788 {
1789 char *peers_file;
1790 GNUNET_asprintf (&peers_file, "%s%s", room_dir, "peers.list");
1791
1792 save_peer_store (get_srv_room_peer_store (room), peers_file);
1793 GNUNET_free (peers_file);
1794
1799
1800 {
1801 char *basement_file;
1802 GNUNET_asprintf (&basement_file, "%s%s", room_dir, "basement.list");
1803
1804 save_list_tunnels (&(room->basement), basement_file);
1805 GNUNET_free (basement_file);
1806 }
1807
1808 save_message_state (&(room->state), room_dir);
1809 }
1810
1811 GNUNET_free (room_dir);
1812}
1813
1814
1815void
1817{
1818 char *room_dir;
1819
1820 GNUNET_assert (room);
1821
1822 get_room_data_subdir (room, &room_dir);
1823
1824 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove room from directory: %s\n",
1825 room_dir);
1826
1829
1830 GNUNET_free (room_dir);
1831}
1832
1833
1834static void
1837{
1838 struct GNUNET_HashCode hash;
1839 char *session_dir;
1840 char *room_dir;
1841
1842 GNUNET_assert ((room) && (session));
1843
1845 "Remove member session from room: %s (%s)\n",
1847 GNUNET_h2s (get_srv_room_key (room)));
1848
1849 remove_member_session (session->member, session);
1850
1851 {
1852 const struct GNUNET_CRYPTO_BlindablePublicKey *public_key;
1853 public_key = get_member_session_public_key (session);
1854
1855 GNUNET_CRYPTO_hash (public_key, sizeof(*public_key), &hash);
1856 }
1857
1858
1859 get_room_data_subdir (room, &room_dir);
1860
1862 &session_dir, "%s%s%c%s%c%s%c%s%c", room_dir,
1863 "members", DIR_SEPARATOR,
1865 "sessions", DIR_SEPARATOR,
1866 GNUNET_h2s (&hash), DIR_SEPARATOR);
1867
1868 GNUNET_free (room_dir);
1869
1870 GNUNET_DISK_directory_remove (session_dir);
1871 GNUNET_free (session_dir);
1872
1873 destroy_member_session (session);
1874}
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.