remove never working setuid helper code from the build-system.
[oweals/gnunet.git] / src / transport / gnunet-service-transport.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2010,2011 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  */
20
21 /**
22  * @file transport/gnunet-service-transport.h
23  * @brief globals
24  * @author Christian Grothoff
25  */
26 #ifndef GNUNET_SERVICE_TRANSPORT_H
27 #define GNUNET_SERVICE_TRANSPORT_H
28
29 #include "gnunet_util_lib.h"
30 #include "gnunet_statistics_service.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet_transport_service.h"
33
34 #define VERBOSE_VALIDATION GNUNET_YES
35
36 /**
37  * Statistics handle.
38  */
39 extern struct GNUNET_STATISTICS_Handle *GST_stats;
40
41 /**
42  * Configuration handle.
43  */
44 extern const struct GNUNET_CONFIGURATION_Handle *GST_cfg;
45
46 /**
47  * Configuration handle.
48  */
49 extern struct GNUNET_PeerIdentity GST_my_identity;
50
51 /**
52  * Handle to peerinfo service.
53  */
54 extern struct GNUNET_PEERINFO_Handle *GST_peerinfo;
55
56 /**
57  * Our private key.
58  */
59 extern struct GNUNET_CRYPTO_EddsaPrivateKey *GST_my_private_key;
60
61 /**
62  * ATS handle.
63  */
64 extern struct GNUNET_ATS_SchedulingHandle *GST_ats;
65
66 /**
67  * ATS connectivity handle.
68  */
69 extern struct GNUNET_ATS_ConnectivityHandle *GST_ats_connect;
70
71 /**
72  * Interface scanner determines our LAN address range(s).
73  */
74 extern struct GNUNET_NT_InterfaceScanner *GST_is;
75
76
77 /**
78  * Function to call when a peer's address has changed
79  *
80  * @param cls closure
81  * @param peer peer this update is about,
82  * @param address address, NULL for disconnect notification
83  */
84 typedef void
85 (*GNUNET_TRANSPORT_NeighbourChangeCallback) (void *cls,
86                                              const struct
87                                              GNUNET_PeerIdentity *peer,
88                                              const struct
89                                              GNUNET_HELLO_Address *address,
90                                              enum GNUNET_TRANSPORT_PeerState
91                                              state,
92                                              struct GNUNET_TIME_Absolute
93                                              state_timeout,
94                                              struct GNUNET_BANDWIDTH_Value32NBO
95                                              bandwidth_in,
96                                              struct GNUNET_BANDWIDTH_Value32NBO
97                                              bandwidth_out);
98
99
100 /**
101  * Continuation called from a blacklist test.
102  *
103  * @param cls closure
104  * @param peer identity of peer that was tested
105  * @param address address associated with the request
106  * @param session session associated with the request
107  * @param result #GNUNET_OK if the connection is allowed,
108  *               #GNUNET_NO if not,
109  *               #GNUNET_SYSERR if operation was aborted
110  */
111 typedef void
112 (*GST_BlacklistTestContinuation) (void *cls,
113                                   const struct GNUNET_PeerIdentity *peer,
114                                   const struct GNUNET_HELLO_Address *address,
115                                   struct GNUNET_ATS_Session *session,
116                                   int result);
117
118
119 /**
120  * Add the given peer to the blacklist (for the given transport).
121  *
122  * @param peer peer to blacklist
123  * @param transport_name transport to blacklist for this peer, NULL for all
124  */
125 void
126 GST_blacklist_add_peer (const struct GNUNET_PeerIdentity *peer,
127                         const char *transport_name);
128
129
130 /**
131  * Handle to an active blacklist check.
132  */
133 struct GST_BlacklistCheck;
134
135
136
137 /**
138  * Test if a peer/transport combination is blacklisted.
139  *
140  * @param peer the identity of the peer to test
141  * @param transport_name name of the transport to test, never NULL
142  * @param cont function to call with result
143  * @param cont_cls closure for @a cont
144  * @param address address to pass back to @a cont, can be NULL
145  * @param session session to pass back to @a cont, can be NULL
146  * @return handle to the blacklist check, NULL if the decision
147  *        was made instantly and @a cont was already called
148  */
149 struct GST_BlacklistCheck *
150 GST_blacklist_test_allowed (const struct GNUNET_PeerIdentity *peer,
151                             const char *transport_name,
152                             GST_BlacklistTestContinuation cont,
153                             void *cont_cls,
154                             const struct GNUNET_HELLO_Address *address,
155                             struct GNUNET_ATS_Session *session);
156
157
158 /**
159  * Abort blacklist if @a address and @a session match.
160  *
161  * @param address address used to abort matching checks
162  * @param session session used to abort matching checks
163  */
164 void
165 GST_blacklist_abort_matching (const struct GNUNET_HELLO_Address *address,
166                               struct GNUNET_ATS_Session *session);
167
168 /**
169  * Cancel a blacklist check.
170  *
171  * @param bc check to cancel
172  */
173 void
174 GST_blacklist_test_cancel (struct GST_BlacklistCheck *bc);
175
176
177 /**
178  * Function called by the transport for each received message.
179  *
180  * @param cls closure, const char* with the name of the plugin we received the message from
181  * @param address address and (claimed) identity of the other peer
182  * @param session identifier used for this session (NULL for plugins
183  *                that do not offer bi-directional communication to the sender
184  *                using the same "connection")
185  * @param message the message, NULL if we only care about
186  *                learning about the delay until we should receive again
187  * @return how long the plugin should wait until receiving more data
188  *         (plugins that do not support this, can ignore the return value)
189  */
190 struct GNUNET_TIME_Relative
191 GST_receive_callback (void *cls,
192                       const struct GNUNET_HELLO_Address *address,
193                       struct GNUNET_ATS_Session *session,
194                       const struct GNUNET_MessageHeader *message);
195
196 /**
197  * Broadcast the given message to all of our clients.
198  *
199  * @param msg message to broadcast
200  * @param may_drop #GNUNET_YES if the message can be dropped / is payload
201  */
202 void
203 GST_clients_broadcast (const struct GNUNET_MessageHeader *msg,
204                        int may_drop);
205
206
207 /**
208  * Broadcast the new active address to all clients monitoring the peer.
209  *
210  * @param peer peer this update is about (never NULL)
211  * @param address address, NULL on disconnect
212  * @param state the current state of the peer
213  * @param state_timeout the time out for the state
214  */
215 void
216 GST_clients_broadcast_peer_notification (const struct GNUNET_PeerIdentity *peer,
217                                          const struct
218                                          GNUNET_HELLO_Address *address,
219                                          enum GNUNET_TRANSPORT_PeerState state,
220                                          struct GNUNET_TIME_Absolute
221                                          state_timeout);
222
223
224 /**
225  * Notify all clients about a disconnect, and cancel
226  * pending SEND_OK messages for this peer.
227  *
228  * @param peer peer that disconnected
229  */
230 void
231 GST_clients_broadcast_disconnect (const struct GNUNET_PeerIdentity *peer);
232
233
234
235
236 #endif
237 /* end of file gnunet-service-transport_plugins.h */