aboutsummaryrefslogtreecommitdiff
path: root/src/messenger/gnunet-service-messenger_tunnel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/messenger/gnunet-service-messenger_tunnel.h')
-rw-r--r--src/messenger/gnunet-service-messenger_tunnel.h107
1 files changed, 69 insertions, 38 deletions
diff --git a/src/messenger/gnunet-service-messenger_tunnel.h b/src/messenger/gnunet-service-messenger_tunnel.h
index e6efb226d..96d98546d 100644
--- a/src/messenger/gnunet-service-messenger_tunnel.h
+++ b/src/messenger/gnunet-service-messenger_tunnel.h
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of GNUnet. 2 This file is part of GNUnet.
3 Copyright (C) 2020 GNUnet e.V. 3 Copyright (C) 2020--2021 GNUnet e.V.
4 4
5 GNUnet is free software: you can redistribute it and/or modify it 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 6 under the terms of the GNU Affero General Public License as published
@@ -32,6 +32,7 @@
32#include "gnunet_crypto_lib.h" 32#include "gnunet_crypto_lib.h"
33 33
34#include "gnunet-service-messenger_room.h" 34#include "gnunet-service-messenger_room.h"
35#include "gnunet-service-messenger_message_state.h"
35 36
36struct GNUNET_MESSENGER_SrvTunnel 37struct GNUNET_MESSENGER_SrvTunnel
37{ 38{
@@ -39,17 +40,18 @@ struct GNUNET_MESSENGER_SrvTunnel
39 struct GNUNET_CADET_Channel *channel; 40 struct GNUNET_CADET_Channel *channel;
40 41
41 GNUNET_PEER_Id peer; 42 GNUNET_PEER_Id peer;
42 struct GNUNET_ShortHashCode *contact_id; 43
44 uint32_t messenger_version;
43 45
44 struct GNUNET_HashCode *peer_message; 46 struct GNUNET_HashCode *peer_message;
45 struct GNUNET_HashCode *last_message; 47 struct GNUNET_MESSENGER_MessageState state;
46}; 48};
47 49
48/** 50/**
49 * Creates and allocates a tunnel of a <i>room</i> to a specific peer identity. 51 * Creates and allocates a tunnel of a <i>room</i> to a specific peer identity (called <i>door</i>).
50 * 52 *
51 * @param room Room 53 * @param[in/out] room Room
52 * @param door Peer identity 54 * @param[in] door Peer identity
53 * @return New tunnel 55 * @return New tunnel
54 */ 56 */
55struct GNUNET_MESSENGER_SrvTunnel* 57struct GNUNET_MESSENGER_SrvTunnel*
@@ -58,28 +60,27 @@ create_tunnel (struct GNUNET_MESSENGER_SrvRoom *room, const struct GNUNET_PeerId
58/** 60/**
59 * Destroys a <i>tunnel</i> and frees its memory fully. 61 * Destroys a <i>tunnel</i> and frees its memory fully.
60 * 62 *
61 * @param tunnel 63 * @param[in/out] tunnel
62 */ 64 */
63void 65void
64destroy_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel); 66destroy_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel);
65 67
66/** 68/**
67 * Binds a CADET <i>channel</i> to a <i>tunnel</i> on returns GNUNET_YES only if 69 * Binds a CADET <i>channel</i> to a <i>tunnel</i> and replaces its channel
68 * the bounds channel was replaced successfully, otherwise GNUNET_NO gets returned. 70 * the tunnel is currently bound to if necessary.
69 * 71 *
70 * @param tunnel Tunnel 72 * @param[in/out] tunnel Tunnel
71 * @param channel CADET channel 73 * @param[in/out] channel CADET channel
72 * @return GNUNET_YES on success, otherwise GNUNET_NO
73 */ 74 */
74int 75void
75bind_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel); 76bind_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_CADET_Channel *channel);
76 77
77/** 78/**
78 * Tries to connect a <i>tunnel</i> by creating a new CADET channel and binding it. 79 * Tries to connect a <i>tunnel</i> by creating a new CADET channel and binding it.
79 * The function returns GNUNET_YES on success, otherwise GNUNET_NO. 80 * The function returns #GNUNET_YES on success, otherwise #GNUNET_NO.
80 * 81 *
81 * @param tunnel Tunnel 82 * @param[in/out] tunnel Tunnel
82 * @return GNUNET_YES on success, otherwise GNUNET_NO 83 * @return #GNUNET_YES on success, otherwise #GNUNET_NO
83 */ 84 */
84int 85int
85connect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel); 86connect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel);
@@ -88,7 +89,7 @@ connect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel);
88 * Disconnects and unbinds a channel from a <i>tunnel</i>. The actual disconnection 89 * Disconnects and unbinds a channel from a <i>tunnel</i>. The actual disconnection
89 * will be asynchronous. 90 * will be asynchronous.
90 * 91 *
91 * @param tunnel Tunnel 92 * @param[in/out] tunnel Tunnel
92 */ 93 */
93void 94void
94disconnect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel); 95disconnect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel);
@@ -96,46 +97,43 @@ disconnect_tunnel (struct GNUNET_MESSENGER_SrvTunnel *tunnel);
96/** 97/**
97 * Returns the status of a currently bound channel of a <i>tunnel</i>. 98 * Returns the status of a currently bound channel of a <i>tunnel</i>.
98 * 99 *
99 * @param tunnel Tunnel 100 * @param[in] tunnel Tunnel
100 * @return GNUNET_YES or GNUNET_NO 101 * @return #GNUNET_YES or #GNUNET_NO
101 */ 102 */
102int 103int
103is_tunnel_connected (const struct GNUNET_MESSENGER_SrvTunnel *tunnel); 104is_tunnel_connected (const struct GNUNET_MESSENGER_SrvTunnel *tunnel);
104 105
105/** 106/**
106 * Sends an envelope containing a <i>message</i> with a given <i>hash</i> through 107 * Sends an envelope containing a <i>message</i> with a given <i>hash</i> through
107 * a <i>tunnel</i> by a given <i>handle</i>. 108 * a <i>tunnel</i>.
108 * 109 *
109 * @param tunnel Tunnel 110 * @param[in/out] tunnel Tunnel
110 * @param handle Handle 111 * @param[in/out] env Envelope
111 * @param env Envelope 112 * @param[in] hash Hash of message
112 * @param message Message
113 * @param hash Hash of message
114 */ 113 */
115void 114void
116send_tunnel_envelope (struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MQ_Envelope *env, 115send_tunnel_envelope (struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_MQ_Envelope *env,
117 struct GNUNET_MESSENGER_Message *message, const struct GNUNET_HashCode *hash); 116 const struct GNUNET_HashCode *hash);
118 117
119/** 118/**
120 * Sends a <i>message</i> by packing it automatically into an envelope and passing it 119 * Sends a <i>message</i> by packing it automatically into an envelope and passing it
121 * through the <i>tunnel</i>. The used <i>handle</i> will sign the message and 120 * through the <i>tunnel</i>. The used <i>handle</i> will sign the message and
122 * the <i>hash</i> will be calculated and stored. 121 * the <i>hash</i> will be calculated and stored.
123 * 122 *
124 * @param tunnel Tunnel 123 * @param[in/out] tunnel Tunnel
125 * @param handle Handle 124 * @param[in/out] handle Handle
126 * @param[out] message Message 125 * @param[in/out] message Message
127 * @param[out] hash Hash of message 126 * @return #GNUNET_YES on success, GNUNET_NO otherwise
128 */ 127 */
129void 128int
130send_tunnel_message (struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message, 129send_tunnel_message (struct GNUNET_MESSENGER_SrvTunnel *tunnel, void *handle, struct GNUNET_MESSENGER_Message *message);
131 struct GNUNET_HashCode *hash);
132 130
133/** 131/**
134 * Forwards a given <i>message</i> with a known <i>hash</i> through a <i>tunnel</i>. 132 * Forwards a given <i>message</i> with a known <i>hash</i> through a <i>tunnel</i>.
135 * 133 *
136 * @param tunnel Tunnel 134 * @param[in/out] tunnel Tunnel
137 * @param message Message 135 * @param[in] message Message
138 * @param hash Hash of message 136 * @param[in] hash Hash of message
139 */ 137 */
140void 138void
141forward_tunnel_message (struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message, 139forward_tunnel_message (struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct GNUNET_MESSENGER_Message *message,
@@ -146,10 +144,43 @@ forward_tunnel_message (struct GNUNET_MESSENGER_SrvTunnel *tunnel, const struct
146 * and matching the tunnels peer identity. If no peer message has been linked to the tunnel 144 * and matching the tunnels peer identity. If no peer message has been linked to the tunnel
147 * yet, NULL gets returned. 145 * yet, NULL gets returned.
148 * 146 *
149 * @param tunnel Tunnel 147 * @param[in] tunnel Tunnel
150 * @return Hash of peer message or NULL 148 * @return Hash of peer message or NULL
151 */ 149 */
152const struct GNUNET_HashCode* 150const struct GNUNET_HashCode*
153get_tunnel_peer_message (const struct GNUNET_MESSENGER_SrvTunnel *tunnel); 151get_tunnel_peer_message (const struct GNUNET_MESSENGER_SrvTunnel *tunnel);
154 152
153/**
154 * Writes the peer identity of the peer connected via <i>tunnel</i> to this peer into
155 * the <i>peer</i> parameter.
156 *
157 * @param[in] tunnel Tunnel
158 * @param[out] peer Peer identity
159 */
160void
161get_tunnel_peer_identity (const struct GNUNET_MESSENGER_SrvTunnel *tunnel, struct GNUNET_PeerIdentity *peer);
162
163/**
164 * Returns the current messenger version the peer connected via a given <i>tunnel</i>
165 * has reported to be using if it was compatible during updating.
166 *
167 * @see update_tunnel_messenger_version
168 *
169 * @param[in] tunnel Tunnel
170 * @return Version of messenger
171 */
172uint32_t
173get_tunnel_messenger_version (const struct GNUNET_MESSENGER_SrvTunnel *tunnel);
174
175/**
176 * Updates the messenger version of the <i>tunnel</i> to a given <i>version</i> if
177 * it is compatible to the running peer of the service. Depending on success it
178 * returns #GNUNET_OK or #GNUNET_SYSERR on failure.
179 *
180 * @param[in/out] tunnel Tunnel
181 * @param[in] version Version of messenger
182 */
183int
184update_tunnel_messenger_version (struct GNUNET_MESSENGER_SrvTunnel *tunnel, uint32_t version);
185
155#endif //GNUNET_SERVICE_MESSENGER_TUNNEL_H 186#endif //GNUNET_SERVICE_MESSENGER_TUNNEL_H