changes
[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 struct GAS_Addresses_Handle;
38
39 /**
40  * Address with additional information
41  */
42 struct ATS_Address
43 {
44   /**
45    * Next element in DLL
46    */
47   struct ATS_Address *next;
48
49   /**
50    * Previous element in DLL
51    */
52   struct ATS_Address *prev;
53
54   /**
55    * Peer ID
56    */
57   struct GNUNET_PeerIdentity peer;
58
59   /**
60    * Session ID, 0 if no session is given
61    */
62   uint32_t session_id;
63
64   /**
65    * Address
66    */
67   const void *addr;
68
69   /**
70    * Address length
71    */
72   size_t addr_len;
73
74   /**
75    * Plugin name
76    */
77   char *plugin;
78
79   /**
80    * Solver specific information for this address
81    */
82   void *solver_information;
83
84   /* CHECK USAGE */
85   struct GNUNET_TIME_Relative atsp_latency;
86
87   /* CHECK USAGE */
88   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_in;
89
90   /* CHECK USAGE */
91   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_out;
92
93
94   /* CHECK USAGE */
95   uint32_t atsp_distance;
96
97   /* CHECK USAGE */
98   uint32_t atsp_cost_wan;
99
100   /* CHECK USAGE */
101   uint32_t atsp_cost_lan;
102
103   /* CHECK USAGE */
104   uint32_t atsp_cost_wlan;
105
106   /* CHECK USAGE */
107   uint32_t atsp_network_type;
108
109   /**
110    * Inbound bandwidth assigned by solver in NBO
111    */
112   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_in;
113
114   /**
115    * Outbound bandwidth assigned by solver in NBO
116    */
117   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_out;
118
119   /**
120    * Blocking interval
121    */
122   struct GNUNET_TIME_Relative block_interval;
123
124   /**
125    * Time when address can be suggested again
126    */
127   struct GNUNET_TIME_Absolute blocked_until;
128
129   /**
130    * Is this the active address for this peer?
131    */
132   int active;
133
134   /**
135    * Is this the address for this peer in use?
136    */
137   int used;
138 };
139
140
141 /**
142  * Callback to call from solver when bandwidth for address has changed
143  *
144  * @param address the with changed bandwidth assigned
145  */
146
147 typedef void
148  (*GAS_bandwidth_changed_cb) (void *cls, struct ATS_Address *address);
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  * @param bw_changed_cb callback to call when assigned changes
170  * @return handle for the solver on success, NULL on fail
171  */
172 typedef void *
173  (*GAS_solver_init) (const struct GNUNET_CONFIGURATION_Handle *cfg,
174                      const struct GNUNET_STATISTICS_Handle *stats,
175                      int *network,
176                      unsigned long long *out_quota,
177                      unsigned long long *in_quota,
178                      int dest_length,
179                      GAS_bandwidth_changed_cb bw_changed_cb,
180                      void *bw_changed_cb_cls);
181
182
183 typedef void
184 (*GAS_solver_address_change_preference) (void *solver,
185                                          const struct GNUNET_PeerIdentity *peer,
186                                          enum GNUNET_ATS_PreferenceKind kind,
187                                          float score);
188
189 /**
190  * Add a single address to the solver
191  *
192  * @param solver the solver Handle
193  * @param addresses the address hashmap containing all addresses
194  * @param address the address to add
195  */
196 typedef void
197 (*GAS_solver_address_add) (void *solver,
198                            struct GNUNET_CONTAINER_MultiHashMap * addresses,
199                            struct ATS_Address *address);
200
201
202
203 typedef void
204  (*GAS_solver_address_delete) (void *solver,
205                                struct GNUNET_CONTAINER_MultiHashMap *addresses,
206                                struct ATS_Address *address,
207                                int session_only);
208
209 typedef void
210 (*GAS_solver_address_update) (void *solver,
211                               struct GNUNET_CONTAINER_MultiHashMap *addresses,
212                               struct ATS_Address *address);
213
214
215 typedef const struct ATS_Address *
216 (*GAS_solver_get_preferred_address) (void *solver,
217                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
218                                      const struct GNUNET_PeerIdentity *peer);
219
220
221 typedef void
222  (*GAS_solver_done) (void *solver);
223
224
225 /**
226  * Initialize address subsystem.
227  *
228  * @param cfg configuration to use
229  * @param stats the statistics handle to use
230  */
231 struct GAS_Addresses_Handle *
232 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
233                     const struct GNUNET_STATISTICS_Handle *stats);
234
235 /**
236  * Shutdown address subsystem.
237  */
238 void
239 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
240
241 void
242 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
243                                     const struct GNUNET_PeerIdentity *peer);
244
245 /**
246  * This address is now used or not used anymore
247  */
248 int
249 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
250                       const struct GNUNET_PeerIdentity *peer,
251                       const char *plugin_name, const void *plugin_addr,
252                       size_t plugin_addr_len, uint32_t session_id, int in_use);
253
254 void
255 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
256                       const struct GNUNET_PeerIdentity *peer,
257                       const char *plugin_name, const void *plugin_addr,
258                       size_t plugin_addr_len, uint32_t session_id,
259                       const struct GNUNET_ATS_Information *atsi,
260                       uint32_t atsi_count);
261
262
263 void
264 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
265                        const struct GNUNET_PeerIdentity *peer,
266                        const char *plugin_name, const void *plugin_addr,
267                        size_t plugin_addr_len, uint32_t session_id);
268
269
270 void
271 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle);
272
273
274 /**
275  * Cancel address suggestions for a peer
276  *
277  * @param peer the respective peer
278  */
279 void
280 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
281                                       const struct GNUNET_PeerIdentity *peer);
282
283 void
284 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
285                                const struct GNUNET_PeerIdentity *peer);
286
287 void
288 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
289                                  const struct GNUNET_PeerIdentity *peer,
290                                  enum GNUNET_ATS_PreferenceKind kind,
291                                  float score);
292
293 void
294 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
295                    const struct GNUNET_PeerIdentity *peer,
296                    const char *plugin_name, const void *plugin_addr,
297                    size_t plugin_addr_len, uint32_t session_id,
298                    const struct GNUNET_ATS_Information *atsi,
299                    uint32_t atsi_count);
300
301
302 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
303                                           const struct GNUNET_PeerIdentity *id);
304
305 /**
306  * Return all peers currently known to ATS
307  *
308  * @param p_it the iterator to call for every peer
309  * @param p_it_cls the closure for the iterator
310  */
311 void
312 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
313                              GNUNET_ATS_Peer_Iterator p_it,
314                              void *p_it_cls);
315
316 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
317     const struct GNUNET_PeerIdentity *id,
318     const char *plugin_name,
319     const void *plugin_addr, size_t plugin_addr_len,
320     const int address_active,
321     const struct GNUNET_ATS_Information *atsi,
322     uint32_t atsi_count,
323     struct GNUNET_BANDWIDTH_Value32NBO
324     bandwidth_out,
325     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
326
327 /**
328  * Return information all peers currently known to ATS
329  *
330  * @param peer the respective peer
331  * @param pi_it the iterator to call for every peer
332  * @param pi_it_cls the closure for the iterator
333  */
334 void
335 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
336                              const struct GNUNET_PeerIdentity *peer,
337                              GNUNET_ATS_PeerInfo_Iterator pi_it,
338                              void *pi_it_cls);
339
340 #endif
341
342 /* end of gnunet-service-ats_addresses.h */