increase blocking on suggest in addresses, checking in solver
[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 typedef void *
151  (*GAS_solver_init) (const struct GNUNET_CONFIGURATION_Handle *cfg,
152                      const struct GNUNET_STATISTICS_Handle *stats,
153                      int *network,
154                      unsigned long long *out_dest,
155                      unsigned long long *in_dest,
156                      int dest_length);
157
158 typedef void
159 (*GAS_solver_address_change_preference) (void *solver,
160                                          const struct GNUNET_PeerIdentity *peer,
161                                          enum GNUNET_ATS_PreferenceKind kind,
162                                          float score);
163
164 typedef void
165  (*GAS_solver_address_delete) (void *solver,
166                                struct GNUNET_CONTAINER_MultiHashMap *addresses,
167                                struct ATS_Address *address);
168
169 typedef void
170 (*GAS_solver_address_update) (void *solver,
171                               struct GNUNET_CONTAINER_MultiHashMap *addresses,
172                               struct ATS_Address *address);
173
174
175 typedef const struct ATS_Address *
176 (*GAS_solver_get_preferred_address) (void *solver,
177                                      struct GNUNET_CONTAINER_MultiHashMap *addresses,
178                                      const struct GNUNET_PeerIdentity *peer);
179
180
181 typedef void
182  (*GAS_solver_done) (void *solver);
183
184
185 /**
186  * Initialize address subsystem.
187  *
188  * @param cfg configuration to use
189  * @param stats the statistics handle to use
190  */
191 struct GAS_Addresses_Handle *
192 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg,
193                     const struct GNUNET_STATISTICS_Handle *stats);
194
195 /**
196  * Shutdown address subsystem.
197  */
198 void
199 GAS_addresses_done (struct GAS_Addresses_Handle *handle);
200
201 void
202 GAS_addresses_handle_backoff_reset (const struct GNUNET_PeerIdentity *peer);
203
204 /**
205  * This address is now used or not used anymore
206  */
207 int
208 GAS_addresses_in_use (const struct GNUNET_PeerIdentity *peer,
209                       const char *plugin_name, const void *plugin_addr,
210                       size_t plugin_addr_len, uint32_t session_id, int in_use);
211
212 void
213 GAS_addresses_update (const struct GNUNET_PeerIdentity *peer,
214                       const char *plugin_name, const void *plugin_addr,
215                       size_t plugin_addr_len, uint32_t session_id,
216                       const struct GNUNET_ATS_Information *atsi,
217                       uint32_t atsi_count);
218
219
220 void
221 GAS_addresses_destroy (const struct GNUNET_PeerIdentity *peer,
222                        const char *plugin_name, const void *plugin_addr,
223                        size_t plugin_addr_len, uint32_t session_id);
224
225
226 void
227 GAS_addresses_destroy_all (void);
228
229
230 /**
231  * Cancel address suggestions for a peer
232  *
233  * @param peer the respective peer
234  */
235 void
236 GAS_addresses_request_address_cancel (const struct GNUNET_PeerIdentity *peer);
237
238 void
239 GAS_addresses_request_address (const struct GNUNET_PeerIdentity *peer);
240
241 void
242 GAS_addresses_change_preference (const struct GNUNET_PeerIdentity *peer,
243                                  enum GNUNET_ATS_PreferenceKind kind,
244                                  float score);
245
246 void
247 GAS_addresses_add (const struct GNUNET_PeerIdentity *peer,
248                       const char *plugin_name, const void *plugin_addr,
249                       size_t plugin_addr_len, uint32_t session_id,
250                       const struct GNUNET_ATS_Information *atsi,
251                       uint32_t atsi_count);
252
253
254 typedef void (*GNUNET_ATS_Peer_Iterator) (void *p_it_cls,
255                                           const struct GNUNET_PeerIdentity *id);
256
257 /**
258  * Return all peers currently known to ATS
259  *
260  * @param p_it the iterator to call for every peer
261  * @param p_it_cls the closure for the iterator
262  */
263 void
264 GAS_addresses_iterate_peers (GNUNET_ATS_Peer_Iterator p_it, void *p_it_cls);
265
266 typedef void (*GNUNET_ATS_PeerInfo_Iterator) (void *p_it_cls,
267     const struct GNUNET_PeerIdentity *id,
268     const char *plugin_name,
269     const void *plugin_addr, size_t plugin_addr_len,
270     const int address_active,
271     const struct GNUNET_ATS_Information *atsi,
272     uint32_t atsi_count,
273     struct GNUNET_BANDWIDTH_Value32NBO
274     bandwidth_out,
275     struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in);
276
277 /**
278  * Return information all peers currently known to ATS
279  *
280  * @param peer the respective peer
281  * @param pi_it the iterator to call for every peer
282  * @param pi_it_cls the closure for the iterator
283  */
284 void
285 GAS_addresses_get_peer_info (const struct GNUNET_PeerIdentity *peer, GNUNET_ATS_PeerInfo_Iterator pi_it, void *pi_it_cls);
286
287 #endif
288
289 /* end of gnunet-service-ats_addresses.h */