ae1215954a79c847c579fd79c97369c49cc7539c
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.h
1 /*
2      This file is part of GNUnet.
3      (C) 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file ats/gnunet-service-ats_addresses.h
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #ifndef GNUNET_SERVICE_ATS_ADDRESSES_H
28 #define GNUNET_SERVICE_ATS_ADDRESSES_H
29
30 #include "gnunet_util_lib.h"
31 #include "gnunet_ats_service.h"
32 #include "gnunet_statistics_service.h"
33 #include "ats.h"
34
35 #define ATS_BLOCKING_DELTA GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100)
36
37 /**
38  * Address with additional information
39  */
40 struct ATS_Address
41 {
42   /**
43    * Next element in DLL
44    */
45   struct ATS_Address *next;
46
47   /**
48    * Previous element in DLL
49    */
50   struct ATS_Address *prev;
51
52   /**
53    * Peer ID
54    */
55   struct GNUNET_PeerIdentity peer;
56
57   /**
58    * Session ID, 0 if no session is given
59    */
60   uint32_t session_id;
61
62   /**
63    * Address
64    */
65   const void *addr;
66
67   /**
68    * Address length
69    */
70   size_t addr_len;
71
72   /**
73    * Plugin name
74    */
75   char *plugin;
76
77   /**
78    * MLP specific information
79    * TODO remove or rename
80    */
81   void *mlp_information;
82
83   /**
84    * ATS information
85    */
86   //struct GNUNET_ATS_Information *ats;
87
88   /**
89    * Number of ATS information
90    */
91   //uint32_t ats_count;
92
93   /* CHECK USAGE */
94   struct GNUNET_TIME_Relative atsp_latency;
95
96   /* CHECK USAGE */
97   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_in;
98
99   /* CHECK USAGE */
100   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_out;
101
102
103   /* CHECK USAGE */
104   uint32_t atsp_distance;
105
106   /* CHECK USAGE */
107   uint32_t atsp_cost_wan;
108
109   /* CHECK USAGE */
110   uint32_t atsp_cost_lan;
111
112   /* CHECK USAGE */
113   uint32_t atsp_cost_wlan;
114
115   /* CHECK USAGE */
116   uint32_t atsp_network_type;
117
118   /**
119    * Inbound bandwidth assigned by solver in NBO
120    */
121   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_in;
122
123   /**
124    * Outbound bandwidth assigned by solver in NBO
125    */
126   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_out;
127
128   /**
129    * Blocking interval
130    */
131   struct GNUNET_TIME_Relative block_interval;
132
133   /**
134    * Time when address can be suggested again
135    */
136   struct GNUNET_TIME_Absolute blocked_until;
137
138   /**
139    * Is this the active address for this peer?
140    */
141   int active;
142
143   /**
144    * Is this the address for this peer in use?
145    */
146   int used;
147 };
148
149
150 /**
151  * Init the simplistic problem solving component
152  *
153  * Quotas:
154  * network[i] contains the network type as type GNUNET_ATS_NetworkType[i]
155  * out_quota[i] contains outbound quota for network type i
156  * in_quota[i] contains inbound quota for network type i
157  *
158  * Example
159  * network = {GNUNET_ATS_NET_UNSPECIFIED, GNUNET_ATS_NET_LOOPBACK, GNUNET_ATS_NET_LAN, GNUNET_ATS_NET_WAN, GNUNET_ATS_NET_WLAN}
160  * network[2]   == GNUNET_ATS_NET_LAN
161  * out_quota[2] == 65353
162  * in_quota[2]  == 65353
163  *
164  * @param cfg configuration handle
165  * @param stats the GNUNET_STATISTICS handle
166  * @param network array of GNUNET_ATS_NetworkType with length dest_length
167  * @param out_quota array of outbound quotas
168  * param in_quota array of outbound quota
169  * @return handle for the solver on success, NULL on fail
170  */
171 typedef void *
172  (*GAS_solver_init) (const struct GNUNET_CONFIGURATION_Handle *cfg,
173                      const struct GNUNET_STATISTICS_Handle *stats,
174                      int *network,
175                      unsigned long long *out_quota,
176                      unsigned long long *in_quota,
177                      int dest_length);
178
179
180 typedef void
181 (*GAS_solver_address_change_preference) (void *solver,
182                                          const struct GNUNET_PeerIdentity *peer,
183                                          enum GNUNET_ATS_PreferenceKind kind,
184                                          float score);
185
186 /**
187  * Add a single address to the solver
188  *
189  * @param solver the solver Handle
190  * @param addresses the address hashmap containing all addresses
191  * @param address the address to add
192  */
193 typedef void
194 (*GAS_solver_address_add) (void *solver,
195                            struct GNUNET_CONTAINER_MultiHashMap * addresses,
196                            struct ATS_Address *address);
197
198
199
200 typedef void
201  (*GAS_solver_address_delete) (void *solver,
202                                struct GNUNET_CONTAINER_MultiHashMap *addresses,
203                                struct ATS_Address *address);
204
205 typedef void
206 (*GAS_solver_address_update) (void *solver,
207                               struct GNUNET_CONTAINER_MultiHashMap *addresses,
208                               struct ATS_Address *address);
209
210
211 typedef const struct ATS_Address *
212 (*GAS_solver_get_preferred_address) (void *solver,
213                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
214                                      const struct GNUNET_PeerIdentity *peer);
215
216
217 typedef void
218  (*GAS_solver_done) (void *solver);
219
220
221 /**
222  * Initialize address subsystem.
223  *
224  * @param cfg configuration to use
225  * @param stats the statistics handle to use
226  */
227 struct GAS_Addresses_Handle *
228 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
229                     const struct GNUNET_STATISTICS_Handle *stats);
230
231 /**
232  * Shutdown address subsystem.
233  */
234 void
235 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
236
237 void
238 GAS_addresses_handle_backoff_reset (const struct GNUNET_PeerIdentity *peer);
239
240 /**
241  * This address is now used or not used anymore
242  */
243 int
244 GAS_addresses_in_use (const struct GNUNET_PeerIdentity *peer,
245                       const char *plugin_name, const void *plugin_addr,
246                       size_t plugin_addr_len, uint32_t session_id, int in_use);
247
248 void
249 GAS_addresses_update (const struct GNUNET_PeerIdentity *peer,
250                       const char *plugin_name, const void *plugin_addr,
251                       size_t plugin_addr_len, uint32_t session_id,
252                       const struct GNUNET_ATS_Information *atsi,
253                       uint32_t atsi_count);
254
255
256 void
257 GAS_addresses_destroy (const struct GNUNET_PeerIdentity *peer,
258                        const char *plugin_name, const void *plugin_addr,
259                        size_t plugin_addr_len, uint32_t session_id);
260
261
262 void
263 GAS_addresses_destroy_all (void);
264
265
266 /**
267  * Cancel address suggestions for a peer
268  *
269  * @param peer the respective peer
270  */
271 void
272 GAS_addresses_request_address_cancel (const struct GNUNET_PeerIdentity *peer);
273
274 void
275 GAS_addresses_request_address (const struct GNUNET_PeerIdentity *peer);
276
277 void
278 GAS_addresses_change_preference (const struct GNUNET_PeerIdentity *peer,
279                                  enum GNUNET_ATS_PreferenceKind kind,
280                                  float score);
281
282 void
283 GAS_addresses_add (const struct GNUNET_PeerIdentity *peer,
284                       const char *plugin_name, const void *plugin_addr,
285                       size_t plugin_addr_len, uint32_t session_id,
286                       const struct GNUNET_ATS_Information *atsi,
287                       uint32_t atsi_count);
288
289
290 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
291                                           const struct GNUNET_PeerIdentity *id);
292
293 /**
294  * Return all peers currently known to ATS
295  *
296  * @param p_it the iterator to call for every peer
297  * @param p_it_cls the closure for the iterator
298  */
299 void
300 GAS_addresses_iterate_peers (GNUNET_ATS_Peer_Iterator p_it, void *p_it_cls);
301
302 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
303     const struct GNUNET_PeerIdentity *id,
304     const char *plugin_name,
305     const void *plugin_addr, size_t plugin_addr_len,
306     const int address_active,
307     const struct GNUNET_ATS_Information *atsi,
308     uint32_t atsi_count,
309     struct GNUNET_BANDWIDTH_Value32NBO
310     bandwidth_out,
311     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
312
313 /**
314  * Return information all peers currently known to ATS
315  *
316  * @param peer the respective peer
317  * @param pi_it the iterator to call for every peer
318  * @param pi_it_cls the closure for the iterator
319  */
320 void
321 GAS_addresses_get_peer_info (const struct GNUNET_PeerIdentity *peer, GNUNET_ATS_PeerInfo_Iterator pi_it, void *pi_it_cls);
322
323 #endif
324
325 /* end of gnunet-service-ats_addresses.h */