GNUnet debian-0.24.3-29-g453fda2cf
 
Loading...
Searching...
No Matches
gnunet-service-messenger_message_handle.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2020--2025 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
27
29
30static void
32 const struct GNUNET_MESSENGER_Message *message,
33 const struct GNUNET_HashCode *hash)
34{
36
37 GNUNET_assert ((session) && (message) && (hash));
38
39 next = switch_member_session (session, message, hash);
40
41 if (next != session)
43}
44
45
46void
48 struct GNUNET_MESSENGER_SenderSession *session,
49 const struct GNUNET_MESSENGER_Message *message,
50 const struct GNUNET_HashCode *hash)
51{
52 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Member (%s) joins room (%s).\n",
53 GNUNET_sh2s (&(message->header.sender_id)), GNUNET_h2s (
54 get_srv_room_key (room)));
55
56 if (GNUNET_OK != reset_member_session (session->member, hash))
57 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Resetting member session failed!\n");
58
60 room,
61 &(message->body.join.key),
62 &(message->header.sender_id),
64}
65
66
67void
69 struct GNUNET_MESSENGER_SenderSession *session,
70 const struct GNUNET_MESSENGER_Message *message,
71 const struct GNUNET_HashCode *hash)
72{
73 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Member (%s) leaves room (%s).\n",
74 GNUNET_sh2s (&(message->header.sender_id)), GNUNET_h2s (
75 get_srv_room_key (room)));
76
78}
79
80
81void
83 struct GNUNET_MESSENGER_SenderSession *session,
84 const struct GNUNET_MESSENGER_Message *message,
85 const struct GNUNET_HashCode *hash)
86{
87 handle_member_session_switch (session->member, message, hash);
88}
89
90
91void
93 struct GNUNET_MESSENGER_SenderSession *session,
94 const struct GNUNET_MESSENGER_Message *message,
95 const struct GNUNET_HashCode *hash)
96{
97 struct GNUNET_MESSENGER_PeerStore *store;
98
99 store = get_srv_room_peer_store (room);
100
101 if (0 == GNUNET_memcmp (session->peer, &(message->body.peer.peer)))
102 update_store_peer (store, &(message->body.peer.peer), GNUNET_YES);
103
105 &(message->body.peer.peer)))
106 add_to_list_tunnels (&(room->basement), &(message->body.peer.peer), hash);
107
108 if (room->peer_message)
110}
111
112
113void
115 struct GNUNET_MESSENGER_SenderSession *session,
116 const struct GNUNET_MESSENGER_Message *message,
117 const struct GNUNET_HashCode *hash)
118{
119 handle_member_session_switch (session->member, message, hash);
120
122 room,
124 &(message->body.id.id),
126}
127
128
129void
131 struct GNUNET_MESSENGER_SenderSession *session,
132 const struct GNUNET_MESSENGER_Message *message,
133 const struct GNUNET_HashCode *hash)
134{
135 struct GNUNET_MESSENGER_PeerStore *store;
136 struct GNUNET_MESSENGER_ListTunnel *element;
137
138 store = get_srv_room_peer_store (room);
139
140 if (0 == GNUNET_memcmp (session->peer, &(message->body.miss.peer)))
141 update_store_peer (store, &(message->body.miss.peer), GNUNET_NO);
142
143 element = find_list_tunnels (&(room->basement),
144 &(message->body.miss.peer), NULL);
145
146 if (! element)
147 return;
148
149 remove_from_list_tunnels (&(room->basement), element);
150
151 if (room->peer_message)
153}
154
155
156void
158 struct GNUNET_MESSENGER_SenderSession *session,
159 const struct GNUNET_MESSENGER_Message *message,
160 const struct GNUNET_HashCode *hash)
161{
162 struct GNUNET_TIME_Relative delay;
163
164 delay = get_message_timeout (message);
165
166 delete_srv_room_message (room, session->member,
167 &(message->body.deletion.hash), delay);
168}
169
170
171void
173 struct GNUNET_MESSENGER_SenderSession *session,
174 const struct GNUNET_MESSENGER_Message *message,
175 const struct GNUNET_HashCode *hash)
176{
177 struct GNUNET_MESSENGER_ListTunnel *element;
178
179 element = find_list_tunnels (&(room->basement), session->peer, NULL);
180
181 if (! element)
182 return;
183
184 memcpy (&(element->connection), &(message->body.connection),
185 sizeof (struct GNUNET_MESSENGER_MessageConnection));
186}
187
188
189void
191 struct GNUNET_MESSENGER_SenderSession *session,
192 const struct GNUNET_MESSENGER_Message *message,
193 const struct GNUNET_HashCode *hash)
194{
195 struct GNUNET_MESSENGER_Member *member;
196 const struct GNUNET_ShortHashCode *discourse;
197 struct GNUNET_MESSENGER_Subscription *subscription;
198
199 member = session->member->member;
200
201 discourse = &(message->body.subscribtion.discourse);
202 subscription = get_member_subscription (member, discourse);
203
204 {
207
210
211 if (subscription)
212 update_subscription (subscription,
213 timestamp,
214 duration);
215 else
216 {
217 subscription =
218 create_subscription (room, member, discourse,
219 timestamp,
220 duration);
221
222 if (! subscription)
223 return;
224
225 add_member_subscription (member, subscription);
226 }
227 }
228
229 update_subscription_timing (subscription);
230 cleanup_srv_room_discourse_messages (room, discourse);
231}
static uint64_t timestamp(void)
Get current timestamp.
void add_member_subscription(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_Subscription *subscription)
Adds a given subscription to a member.
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 add_member_session(struct GNUNET_MESSENGER_Member *member, struct GNUNET_MESSENGER_MemberSession *session)
Adds a given member session to its member.
const struct GNUNET_CRYPTO_PublicKey * get_member_session_public_key(const struct GNUNET_MESSENGER_MemberSession *session)
Returns the public key of a given member session.
void close_member_session(struct GNUNET_MESSENGER_MemberSession *session)
Closes a given member session which opens the request for completion of the given member session.
enum GNUNET_GenericReturnValue reset_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_HashCode *hash)
Resets a given member session which re-opens a member session for new usage.
struct GNUNET_MESSENGER_MemberSession * switch_member_session(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
Creates and allocates a new member session closing and replacing a given other session of the same me...
void 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.
static void handle_member_session_switch(struct GNUNET_MESSENGER_MemberSession *session, const struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash)
void update_store_peer(struct GNUNET_MESSENGER_PeerStore *store, const struct GNUNET_PeerIdentity *peer, enum GNUNET_GenericReturnValue active)
Adds a peer identity to the store if necessary.
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_PeerStore * get_srv_room_peer_store(struct GNUNET_MESSENGER_SrvRoom *room)
Returns the used peer store of a given room.
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 solve_srv_room_member_collisions(struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_CRYPTO_PublicKey *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...
enum GNUNET_GenericReturnValue delete_srv_room_message(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_MemberSession *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...
const struct GNUNET_HashCode * get_srv_room_key(const struct GNUNET_MESSENGER_SrvRoom *room)
Returns the shared secret you need to access a room.
void update_subscription_timing(struct GNUNET_MESSENGER_Subscription *subscription)
void update_subscription(struct GNUNET_MESSENGER_Subscription *subscription, struct GNUNET_TIME_Absolute timestamp, struct GNUNET_TIME_Relative duration)
struct GNUNET_MESSENGER_Subscription * create_subscription(struct GNUNET_MESSENGER_SrvRoom *room, struct GNUNET_MESSENGER_Member *member, const struct GNUNET_ShortHashCode *discourse, struct GNUNET_TIME_Absolute timestamp, struct GNUNET_TIME_Relative duration)
static struct GNUNET_TIME_Relative duration
Option '-d': duration of the mapping.
Definition gnunet-vpn.c:90
#define GNUNET_log(kind,...)
#define GNUNET_memcmp(a, b)
Compare memory in a and b, where both must be of the same pointer type.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
const char * GNUNET_sh2s(const struct GNUNET_ShortHashCode *shc)
Convert a short hash value to a string (for printing debug messages).
const char * GNUNET_h2s(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_DEBUG
struct GNUNET_TIME_Relative GNUNET_TIME_relative_ntoh(struct GNUNET_TIME_RelativeNBO a)
Convert relative time from network byte order.
Definition time.c:630
struct GNUNET_TIME_Absolute GNUNET_TIME_absolute_ntoh(struct GNUNET_TIME_AbsoluteNBO a)
Convert absolute time from network byte order.
Definition time.c:741
void add_to_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer, const struct GNUNET_HashCode *hash)
Adds a specific peer from a tunnel to the end of the list.
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...
enum GNUNET_GenericReturnValue contains_list_tunnels(struct GNUNET_MESSENGER_ListTunnels *tunnels, const struct GNUNET_PeerIdentity *peer)
Tests linearly if the list of tunnels peer identities contains a specific peer identity and returns G...
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...
struct GNUNET_TIME_Relative get_message_timeout(const struct GNUNET_MESSENGER_Message *message)
Return the relative timeout of the content from a given message that controls when a delayed handling...
A 512-bit hashcode.
struct GNUNET_MESSENGER_MessageConnection connection
struct GNUNET_MESSENGER_MemberSession * next
struct GNUNET_MESSENGER_MessageSubscribtion subscribtion
struct GNUNET_MESSENGER_MessageDeletion deletion
struct GNUNET_MESSENGER_MessageConnection connection
struct GNUNET_MESSENGER_MessageId id
struct GNUNET_MESSENGER_MessageMiss miss
struct GNUNET_MESSENGER_MessagePeer peer
struct GNUNET_MESSENGER_MessageJoin join
A connection message body This allows to tell others about connection information about a peer.
struct GNUNET_HashCode hash
The hash of the message to delete.
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_ShortHashCode id
The new id which will replace the senders id in a room.
struct GNUNET_CRYPTO_PublicKey key
The senders public key to verify its signatures.
struct GNUNET_PeerIdentity peer
The peer identity of a disconnected door to a room.
struct GNUNET_PeerIdentity peer
The peer identity of the sender opening a room.
struct GNUNET_TIME_RelativeNBO time
The time window of the subscription.
struct GNUNET_ShortHashCode discourse
The hash of the discourse to subscribtion.
struct GNUNET_MESSENGER_MessageHeader header
Header.
struct GNUNET_MESSENGER_MessageBody body
Body.
struct GNUNET_MESSENGER_MemberSession * member
struct GNUNET_HashCode * peer_message
struct GNUNET_MESSENGER_ListTunnels basement
A 256-bit hashcode.
Time for absolute times used by GNUnet, in microseconds.
Time for relative time used by GNUnet, in microseconds.