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                               uint32_t session,
214                               int in_use,
215                               const struct GNUNET_ATS_Information *atsi,
216                               uint32_t atsi_count);
217
218
219 typedef const struct ATS_Address *
220 (*GAS_solver_get_preferred_address) (void *solver,
221                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
222                                      const struct GNUNET_PeerIdentity *peer);
223
224
225 typedef void
226  (*GAS_solver_done) (void *solver);
227
228
229 /**
230  * Initialize address subsystem.
231  *
232  * @param cfg configuration to use
233  * @param stats the statistics handle to use
234  */
235 struct GAS_Addresses_Handle *
236 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
237                     const struct GNUNET_STATISTICS_Handle *stats);
238
239 /**
240  * Shutdown address subsystem.
241  */
242 void
243 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
244
245 void
246 GAS_addresses_handle_backoff_reset (struct GAS_Addresses_Handle *handle,
247                                     const struct GNUNET_PeerIdentity *peer);
248
249 /**
250  * This address is now used or not used anymore
251  */
252 int
253 GAS_addresses_in_use (struct GAS_Addresses_Handle *handle,
254                       const struct GNUNET_PeerIdentity *peer,
255                       const char *plugin_name, const void *plugin_addr,
256                       size_t plugin_addr_len, uint32_t session_id, int in_use);
257
258 void
259 GAS_addresses_update (struct GAS_Addresses_Handle *handle,
260                       const struct GNUNET_PeerIdentity *peer,
261                       const char *plugin_name, const void *plugin_addr,
262                       size_t plugin_addr_len, uint32_t session_id,
263                       const struct GNUNET_ATS_Information *atsi,
264                       uint32_t atsi_count);
265
266
267 void
268 GAS_addresses_destroy (struct GAS_Addresses_Handle *handle,
269                        const struct GNUNET_PeerIdentity *peer,
270                        const char *plugin_name, const void *plugin_addr,
271                        size_t plugin_addr_len, uint32_t session_id);
272
273
274 void
275 GAS_addresses_destroy_all (struct GAS_Addresses_Handle *handle);
276
277
278 /**
279  * Cancel address suggestions for a peer
280  *
281  * @param peer the respective peer
282  */
283 void
284 GAS_addresses_request_address_cancel (struct GAS_Addresses_Handle *handle,
285                                       const struct GNUNET_PeerIdentity *peer);
286
287 void
288 GAS_addresses_request_address (struct GAS_Addresses_Handle *handle,
289                                const struct GNUNET_PeerIdentity *peer);
290
291 void
292 GAS_addresses_change_preference (struct GAS_Addresses_Handle *handle,
293                                  const struct GNUNET_PeerIdentity *peer,
294                                  enum GNUNET_ATS_PreferenceKind kind,
295                                  float score);
296
297 void
298 GAS_addresses_add (struct GAS_Addresses_Handle *handle,
299                    const struct GNUNET_PeerIdentity *peer,
300                    const char *plugin_name, const void *plugin_addr,
301                    size_t plugin_addr_len, uint32_t session_id,
302                    const struct GNUNET_ATS_Information *atsi,
303                    uint32_t atsi_count);
304
305
306 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
307                                           const struct GNUNET_PeerIdentity *id);
308
309 /**
310  * Return all peers currently known to ATS
311  *
312  * @param p_it the iterator to call for every peer
313  * @param p_it_cls the closure for the iterator
314  */
315 void
316 GAS_addresses_iterate_peers (struct GAS_Addresses_Handle *handle,
317                              GNUNET_ATS_Peer_Iterator p_it,
318                              void *p_it_cls);
319
320 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
321     const struct GNUNET_PeerIdentity *id,
322     const char *plugin_name,
323     const void *plugin_addr, size_t plugin_addr_len,
324     const int address_active,
325     const struct GNUNET_ATS_Information *atsi,
326     uint32_t atsi_count,
327     struct GNUNET_BANDWIDTH_Value32NBO
328     bandwidth_out,
329     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
330
331 /**
332  * Return information all peers currently known to ATS
333  *
334  * @param peer the respective peer
335  * @param pi_it the iterator to call for every peer
336  * @param pi_it_cls the closure for the iterator
337  */
338 void
339 GAS_addresses_get_peer_info (struct GAS_Addresses_Handle *handle,
340                              const struct GNUNET_PeerIdentity *peer,
341                              GNUNET_ATS_PeerInfo_Iterator pi_it,
342                              void *pi_it_cls);
343
344 #endif
345
346 /* end of gnunet-service-ats_addresses.h */