session pointers can rarely be identical due to timing issues
[oweals/gnunet.git] / src / ats / gnunet-service-ats_addresses.c
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.c
23  * @brief ats service address management
24  * @author Matthias Wachs
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_ats_service.h"
29 #include "gnunet-service-ats.h"
30 #include "gnunet-service-ats_addresses.h"
31 #include "gnunet-service-ats_performance.h"
32 #include "gnunet-service-ats_scheduling.h"
33 #include "gnunet-service-ats_reservations.h"
34
35 struct ATS_Address
36 {
37   struct GNUNET_PeerIdentity peer;
38
39   size_t addr_len;
40
41   uint32_t session_id;
42
43   uint32_t ats_count;
44
45   const void *addr;
46
47   char *plugin;
48
49   struct GNUNET_ATS_Information *ats;
50
51   struct GNUNET_TIME_Relative atsp_latency;
52
53   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_in;
54
55   struct GNUNET_BANDWIDTH_Value32NBO atsp_utilization_out;
56
57   uint32_t atsp_distance;
58
59   uint32_t atsp_cost_wan;
60
61   uint32_t atsp_cost_lan;
62
63   uint32_t atsp_cost_wlan;
64
65   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_in;
66
67   struct GNUNET_BANDWIDTH_Value32NBO assigned_bw_out;
68
69   /**
70    * Is this the active address for this peer?
71    */
72   int active;
73
74 };
75
76
77 static struct GNUNET_CONTAINER_MultiHashMap *addresses;
78
79 static unsigned long long total_quota_in;
80
81 static unsigned long long total_quota_out;
82
83 static unsigned int active_addr_count;
84
85
86 /**
87  * Update a bandwidth assignment for a peer.  This trivial method currently
88  * simply assigns the same share to all active connections.
89  *
90  * @param cls unused
91  * @param key unused
92  * @param value the 'struct ATS_Address'
93  * @return GNUNET_OK (continue to iterate)
94  */
95 static int
96 update_bw_it (void *cls, const GNUNET_HashCode * key, void *value)
97 {
98   struct ATS_Address *aa = value;
99
100   if (GNUNET_YES != aa->active)
101     return GNUNET_OK;
102   GNUNET_assert (active_addr_count > 0);
103   aa->assigned_bw_in.value__ = htonl (total_quota_in / active_addr_count);
104   aa->assigned_bw_out.value__ = htonl (total_quota_out / active_addr_count);
105   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "New bandwidth for peer %s is %u/%u\n",
106               GNUNET_i2s (&aa->peer), ntohl (aa->assigned_bw_in.value__),
107               ntohl (aa->assigned_bw_out.value__));
108   GAS_scheduling_transmit_address_suggestion (&aa->peer, aa->plugin, aa->addr,
109                                               aa->addr_len, aa->session_id,
110                                               aa->ats, aa->ats_count,
111                                               aa->assigned_bw_out,
112                                               aa->assigned_bw_in);
113   GAS_reservations_set_bandwidth (&aa->peer, aa->assigned_bw_in);
114   GAS_performance_notify_clients (&aa->peer, aa->plugin, aa->addr, aa->addr_len,
115                                   aa->ats, aa->ats_count, aa->assigned_bw_out,
116                                   aa->assigned_bw_in);
117   return GNUNET_OK;
118 }
119
120
121 /**
122  * Some (significant) input changed, recalculate bandwidth assignment
123  * for all peers.
124  */
125 static void
126 recalculate_assigned_bw ()
127 {
128   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
129               "Recalculating bandwidth for all active connections\n");
130   GNUNET_STATISTICS_update (GSA_stats, "# bandwidth recalculations performed",
131                             1, GNUNET_NO);
132   GNUNET_STATISTICS_set (GSA_stats, "# active addresses", active_addr_count,
133                          GNUNET_NO);
134   GNUNET_CONTAINER_multihashmap_iterate (addresses, &update_bw_it, NULL);
135 }
136
137
138 /**
139  * Destroy the given address.
140  *
141  * @param addr address to destroy
142  * @return GNUNET_YES if bandwidth allocations should be recalcualted
143  */
144 static int
145 destroy_address (struct ATS_Address *addr)
146 {
147   int ret;
148
149   ret = GNUNET_NO;
150   GNUNET_assert (GNUNET_YES ==
151                  GNUNET_CONTAINER_multihashmap_remove (addresses,
152                                                        &addr->peer.hashPubKey,
153                                                        addr));
154   if (GNUNET_YES == addr->active)
155   {
156     active_addr_count--;
157     addr->active = GNUNET_NO;
158     ret = GNUNET_YES;
159   }
160   GNUNET_free_non_null (addr->ats);
161   GNUNET_free (addr->plugin);
162   GNUNET_free (addr);
163   return ret;
164 }
165
166
167 struct CompareAddressContext
168 {
169   const struct ATS_Address *search;
170   struct ATS_Address *result;
171 };
172
173
174 static int
175 compare_address_it (void *cls, const GNUNET_HashCode * key, void *value)
176 {
177   struct CompareAddressContext *cac = cls;
178   struct ATS_Address *aa = value;
179
180   if (((aa->addr_len != cac->search->addr_len) ||
181        (0 != strcmp (aa->plugin, cac->search->plugin)) ||
182        (0 != memcmp (aa->addr, cac->search->addr, aa->addr_len))) &&
183       ((aa->session_id != cac->search->session_id) ||
184        (cac->search->session_id == 0)))
185     return GNUNET_YES;
186   cac->result = aa;
187   return GNUNET_NO;
188 }
189
190
191 /**
192  * Find an existing equivalent address record.
193  * Compares by peer identity and network address OR by session ID
194  * (one of the two must match).
195  *
196  * @param peer peer to lookup addresses for
197  * @param addr existing address record
198  * @return existing address record, NULL for none
199  */
200 struct ATS_Address *
201 find_address (const struct GNUNET_PeerIdentity *peer,
202               const struct ATS_Address *addr)
203 {
204   struct CompareAddressContext cac;
205
206   cac.result = NULL;
207   cac.search = addr;
208   GNUNET_CONTAINER_multihashmap_get_multiple (addresses, &peer->hashPubKey,
209                                               compare_address_it, &cac);
210   return cac.result;
211 }
212
213
214 void
215 GAS_addresses_update (const struct GNUNET_PeerIdentity *peer,
216                       const char *plugin_name, const void *plugin_addr,
217                       size_t plugin_addr_len, uint32_t session_id,
218                       const struct GNUNET_ATS_Information *atsi,
219                       uint32_t atsi_count)
220 {
221   struct ATS_Address *aa;
222   struct ATS_Address *old;
223   uint32_t i;
224
225   aa = GNUNET_malloc (sizeof (struct ATS_Address) + plugin_addr_len);
226   aa->ats = GNUNET_malloc (atsi_count * sizeof (struct GNUNET_ATS_Information));
227   aa->peer = *peer;
228   aa->addr_len = plugin_addr_len;
229   aa->ats_count = atsi_count;
230   memcpy (aa->ats, atsi, atsi_count * sizeof (struct GNUNET_ATS_Information));
231   aa->addr = &aa[1];
232   memcpy (&aa[1], plugin_addr, plugin_addr_len);
233   aa->plugin = GNUNET_strdup (plugin_name);
234   aa->session_id = session_id;
235   old = find_address (peer, aa);
236   if (old == NULL)
237   {
238     GNUNET_assert (GNUNET_OK ==
239                    GNUNET_CONTAINER_multihashmap_put (addresses,
240                                                       &peer->hashPubKey, aa,
241                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
242     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Added new address for peer `%s' %X\n",
243                 GNUNET_i2s (peer), aa);
244     old = aa;
245   }
246   else
247   {
248     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
249                 "Updated existing address for peer `%s' %X \n",
250                 GNUNET_i2s (peer), old);
251     GNUNET_free_non_null (old->ats);
252     old->session_id = session_id;
253     old->ats = NULL;
254     old->ats_count = 0;
255     old->ats = aa->ats;
256     old->ats_count = aa->ats_count;
257     GNUNET_free (aa->plugin);
258     GNUNET_free (aa);
259   }
260   for (i = 0; i < atsi_count; i++)
261     switch (ntohl (atsi[i].type))
262     {
263     case GNUNET_ATS_UTILIZATION_UP:
264       old->atsp_utilization_out.value__ = atsi[i].value;
265       break;
266     case GNUNET_ATS_UTILIZATION_DOWN:
267       old->atsp_utilization_in.value__ = atsi[i].value;
268       break;
269     case GNUNET_ATS_QUALITY_NET_DELAY:
270       old->atsp_latency.rel_value = ntohl (atsi[i].value);
271       break;
272     case GNUNET_ATS_QUALITY_NET_DISTANCE:
273       old->atsp_distance = ntohl (atsi[i].value);
274       break;
275     case GNUNET_ATS_COST_WAN:
276       old->atsp_cost_wan = ntohl (atsi[i].value);
277       break;
278     case GNUNET_ATS_COST_LAN:
279       old->atsp_cost_lan = ntohl (atsi[i].value);
280       break;
281     case GNUNET_ATS_COST_WLAN:
282       old->atsp_cost_wlan = ntohl (atsi[i].value);
283       break;
284     default:
285       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
286                   "Received unsupported ATS type %u\n", ntohl (atsi[i].type));
287       GNUNET_break (0);
288       break;
289     }
290 }
291
292
293 void
294 GAS_addresses_destroy (const struct GNUNET_PeerIdentity *peer,
295                        const char *plugin_name, const void *plugin_addr,
296                        size_t plugin_addr_len, uint32_t session_id)
297 {
298   struct ATS_Address aa;
299   struct ATS_Address *res;
300
301   aa.peer = *peer;
302   aa.addr_len = plugin_addr_len;
303   aa.addr = plugin_addr;
304   aa.plugin = (char *) plugin_name;
305   aa.session_id = session_id;
306   res = find_address (peer, &aa);
307   if (res == NULL)
308   {
309     /* we don't even know this one, can this happen? */
310     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
311                 "Asked to delete unknown address for peer `%s'\n",
312                 GNUNET_i2s (peer));
313     return;
314   }
315   if ((aa.session_id == session_id) && (session_id != 0) && (res->addr_len > 0))
316   {
317     /* just session died */
318     res->session_id = 0;
319     if (GNUNET_YES == res->active)
320     {
321       res->active = GNUNET_NO;
322       active_addr_count--;
323       recalculate_assigned_bw ();
324     }
325     return;
326   }
327   /* destroy address entirely (either was only session or was
328    * not even with a session) */
329   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleting address for peer `%s': `%s'\n",
330               GNUNET_i2s (peer), plugin_name);
331   if (GNUNET_YES == destroy_address (res))
332     recalculate_assigned_bw ();
333 }
334
335
336 /**
337  * Find a "good" address to use for a peer.  If we already have an existing
338  * address, we stick to it.  Otherwise, we pick by lowest distance and then
339  * by lowest latency.
340  *
341  * @param cls the 'struct ATS_Address**' where we store the result
342  * @param key unused
343  * @param value another 'struct ATS_Address*' to consider using
344  * @return GNUNET_OK (continue to iterate)
345  */
346 static int
347 find_address_it (void *cls, const GNUNET_HashCode * key, void *value)
348 {
349   struct ATS_Address **ap = cls;
350   struct ATS_Address *aa = (struct ATS_Address *) value;
351   struct ATS_Address *ab = *ap;
352
353   if (NULL == ab)
354   {
355     *ap = aa;
356     return GNUNET_OK;
357   }
358   if ((ntohl (ab->assigned_bw_in.value__) == 0) &&
359       (ntohl (aa->assigned_bw_in.value__) > 0))
360   {
361     /* stick to existing connection */
362     *ap = aa;
363     return GNUNET_OK;
364   }
365   if (ab->atsp_distance > aa->atsp_distance)
366   {
367     /* user shorter distance */
368     *ap = aa;
369     return GNUNET_OK;
370   }
371   if (ab->atsp_latency.rel_value > aa->atsp_latency.rel_value)
372   {
373     /* user lower latency */
374     *ap = aa;
375     return GNUNET_OK;
376   }
377   /* don't care */
378   return GNUNET_OK;
379 }
380
381
382 void
383 GAS_addresses_in_use (const struct GNUNET_PeerIdentity *peer,
384                       const char *plugin_name, const void *plugin_addr,
385                       size_t plugin_addr_len, uint32_t session_id,
386                       int in_use)
387 {
388
389   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message for peer `%s': %i\n",
390               "ADDRESS_IN_USE",
391               GNUNET_i2s (peer), in_use);
392 }
393
394 void
395 GAS_addresses_request_address (const struct GNUNET_PeerIdentity *peer)
396 {
397   struct ATS_Address *aa;
398
399   aa = NULL;
400   GNUNET_CONTAINER_multihashmap_get_multiple (addresses, &peer->hashPubKey,
401                                               &find_address_it, &aa);
402   if (aa == NULL)
403   {
404     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
405                 "Cannot suggest address for peer `%s'\n", GNUNET_i2s (peer));
406     return;
407   }
408   if (aa->active == GNUNET_NO)
409   {
410     aa->active = GNUNET_YES;
411     active_addr_count++;
412     recalculate_assigned_bw ();
413   }
414   else
415   {
416     /* just to be sure... */
417     GAS_scheduling_transmit_address_suggestion (peer, aa->plugin, aa->addr,
418                                                 aa->addr_len, aa->session_id,
419                                                 aa->ats, aa->ats_count,
420                                                 aa->assigned_bw_out,
421                                                 aa->assigned_bw_in);
422   }
423 }
424
425
426 // FIXME: this function should likely end up in the LP-subsystem and
427 // not with 'addresses' in the future...
428 void
429 GAS_addresses_change_preference (const struct GNUNET_PeerIdentity *peer,
430                                  enum GNUNET_ATS_PreferenceKind kind,
431                                  float score)
432 {
433   // do nothing for now...
434 }
435
436
437 /**
438  * Initialize address subsystem.
439  *
440  * @param cfg configuration to use
441  */
442 void
443 GAS_addresses_init (const struct GNUNET_CONFIGURATION_Handle *cfg)
444 {
445   GNUNET_assert (GNUNET_OK ==
446                  GNUNET_CONFIGURATION_get_value_number (cfg, "core",
447                                                         "TOTAL_QUOTA_IN",
448                                                         &total_quota_in));
449   GNUNET_assert (GNUNET_OK ==
450                  GNUNET_CONFIGURATION_get_value_number (cfg, "core",
451                                                         "TOTAL_QUOTA_OUT",
452                                                         &total_quota_out));
453   addresses = GNUNET_CONTAINER_multihashmap_create (128);
454 }
455
456
457 /**
458  * Free memory of address.
459  *
460  * @param cls NULL
461  * @param key peer identity (unused)
462  * @param value the 'struct ATS_Address' to free
463  * @return GNUNET_OK (continue to iterate)
464  */
465 static int
466 free_address_it (void *cls, const GNUNET_HashCode * key, void *value)
467 {
468   struct ATS_Address *aa = value;
469
470   destroy_address (aa);
471   return GNUNET_OK;
472 }
473
474
475 void
476 GAS_addresses_destroy_all ()
477 {
478   if (addresses != NULL)
479     GNUNET_CONTAINER_multihashmap_iterate (addresses, &free_address_it, NULL);
480   GNUNET_assert (active_addr_count == 0);
481 }
482
483
484 /**
485  * Shutdown address subsystem.
486  */
487 void
488 GAS_addresses_done ()
489 {
490   GAS_addresses_destroy_all ();
491   GNUNET_CONTAINER_multihashmap_destroy (addresses);
492   addresses = NULL;
493 }
494
495
496 /* end of gnunet-service-ats_addresses.c */